lkml.org 
[lkml]   [2017]   [Jul]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] include: platform_device: add pdev_info(), pdev_warn, ... convencience macros
Date
---
include/linux/platform_device.h | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h
index 98c2a7c7108e..723c209d3760 100644
--- a/include/linux/platform_device.h
+++ b/include/linux/platform_device.h
@@ -368,4 +368,11 @@ extern int platform_pm_restore(struct device *dev);
#define USE_PLATFORM_PM_SLEEP_OPS
#endif

+#define pdev_crit(pdev, fmt, args...) dev_crit(&pdev->dev, fmt, ##args)
+#define pdev_err(pdev, fmt, args...) dev_err(&pdev->dev, fmt, ##args)
+#define pdev_warn(pdev, fmt, args...) dev_warn(&pdev->dev, fmt, ##args)
+#define pdev_notice(pdev, fmt, args...) dev_notice(&pdev->dev, fmt, ##args)
+#define pdev_info(pdev, fmt, args...) dev_info(&pdev->dev, fmt, ##args)
+#define pdev_debug(pdev, fmt, args...) dev_debug(&pdev->dev, fmt, ##args)
+
#endif /* _PLATFORM_DEVICE_H_ */
--
2.11.0.rc0.7.gbe5a750
\
 
 \ /
  Last update: 2017-07-07 08:48    [W:0.016 / U:1.784 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site