[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230705074945.3687-1-frank.li@vivo.com>
Date: Wed, 5 Jul 2023 15:49:45 +0800
From: Yangtao Li <frank.li@...o.com>
To: frank.li@...o.com
Cc: Jonathan.Cameron@...wei.com, amitk@...nel.org,
angelogioacchino.delregno@...labora.com, bchihi@...libre.com,
bcm-kernel-feedback-list@...adcom.com, daniel.lezcano@...aro.org,
florian.fainelli@...adcom.com, krzk@...nel.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
linux-mediatek@...ts.infradead.org, linux-pm@...r.kernel.org,
matthias.bgg@...il.com, miquel.raynal@...tlin.com,
mmayer@...adcom.com, rafael@...nel.org, rui.zhang@...el.com,
tglx@...utronix.de, u.kleine-koenig@...gutronix.de,
wenst@...omium.org
Subject: Re: [PATCH v3 1/5] genirq/devres: Add devm_request_threaded_irq_emsg()
I don't know what's wrong with the email client that caused the line break to be abnormal.
I used git send-email to resend this.
int devm_request_threaded_irq_probe(struct device *dev, unsigned int irq,
irq_handler_t handler, irq_handler_t thread_fn,
unsigned long irqflags, const char *devname,
void *dev_id, const char *info)
{
int rc;
rc = devm_request_threaded_irq(dev, irq, handler, NULL, irqflags, devname, dev_id);
if (rc)
return dev_err_probe(dev, rc, "Failed to request %sinterrupt %u %s %s\n",
thread_fn ? "threaded " : "", irq, devname ? : dev_name(dev),
info ? : "");
return 0;
}
EXPORT_SYMBOL(devm_request_threaded_irq_probe);
Thx,
Yangtao
Powered by blists - more mailing lists