[PATCH] include: platform_device: add pdev_info(), pdev_warn, ... convencience macros

From: Enrico Weigelt, metux IT consult
Date: Fri Jul 07 2017 - 02:48:43 EST


---
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