aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-08-26 13:44:59 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-09-07 11:30:53 +0200
commite1f82a0dcf388d98bcc7ad195c03bd812405e6b2 (patch)
tree01f47bc6f4ad5b001a48cda369d407d402e6df19 /include/linux/device.h
parentdevice connection: Remove struct device_connection (diff)
downloadlinux-dev-e1f82a0dcf388d98bcc7ad195c03bd812405e6b2.tar.xz
linux-dev-e1f82a0dcf388d98bcc7ad195c03bd812405e6b2.zip
driver core: Annotate dev_err_probe() with __must_check
We have got already new users of this API which interpret it differently and miss the opportunity to optimize their code. In order to avoid similar cases in the future, annotate dev_err_probe() with __must_check. Fixes: a787e5400a1c ("driver core: add device probe log helper") Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20200826104459.81979-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index d4612efaab82..0b3dc72f64b2 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -931,7 +931,7 @@ void device_links_supplier_sync_state_pause(void);
void device_links_supplier_sync_state_resume(void);
extern __printf(3, 4)
-int dev_err_probe(const struct device *dev, int err, const char *fmt, ...);
+int __must_check dev_err_probe(const struct device *dev, int err, const char *fmt, ...);
/* Create alias, so I can be autoloaded. */
#define MODULE_ALIAS_CHARDEV(major,minor) \