aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2014-01-14 03:46:38 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-01-16 19:59:15 -0500
commitb9f73067f32531db608e469a9ad20ce631e34550 (patch)
treed3377f695cbdb34e9873846f8dbac79f883d5014
parent8c4ff6d0094a16809a7ecdd49d71cf06b0a51326 (diff)
platform: introduce OF style 'modalias' support for platform bus
Fix a problem that, the platform bus supports the OF style modalias in .uevent() call, but not in its device 'modalias' sysfs attribute. Signed-off-by: Zhang Rui <rui.zhang@intel.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/base/platform.c4
-rw-r--r--drivers/of/device.c3
-rw-r--r--include/linux/of_device.h6
3 files changed, 13 insertions, 0 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 2f4aea2428b2..bc78848dd59a 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -679,6 +679,10 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
679 struct platform_device *pdev = to_platform_device(dev); 679 struct platform_device *pdev = to_platform_device(dev);
680 int len; 680 int len;
681 681
682 len = of_device_get_modalias(dev, buf, PAGE_SIZE -1);
683 if (len != -ENODEV)
684 return len;
685
682 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1); 686 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
683 if (len != -ENODEV) 687 if (len != -ENODEV)
684 return len; 688 return len;
diff --git a/drivers/of/device.c b/drivers/of/device.c
index f685e55e0717..dafb9736ab9b 100644
--- a/drivers/of/device.c
+++ b/drivers/of/device.c
@@ -85,6 +85,9 @@ ssize_t of_device_get_modalias(struct device *dev, char *str, ssize_t len)
85 int cplen, i; 85 int cplen, i;
86 ssize_t tsize, csize, repend; 86 ssize_t tsize, csize, repend;
87 87
88 if ((!dev) || (!dev->of_node))
89 return -ENODEV;
90
88 /* Name & Type */ 91 /* Name & Type */
89 csize = snprintf(str, len, "of:N%sT%s", dev->of_node->name, 92 csize = snprintf(str, len, "of:N%sT%s", dev->of_node->name,
90 dev->of_node->type); 93 dev->of_node->type);
diff --git a/include/linux/of_device.h b/include/linux/of_device.h
index 82ce324fdce7..8d7dd6768cb7 100644
--- a/include/linux/of_device.h
+++ b/include/linux/of_device.h
@@ -64,6 +64,12 @@ static inline int of_driver_match_device(struct device *dev,
64static inline void of_device_uevent(struct device *dev, 64static inline void of_device_uevent(struct device *dev,
65 struct kobj_uevent_env *env) { } 65 struct kobj_uevent_env *env) { }
66 66
67static inline int of_device_get_modalias(struct device *dev,
68 char *str, ssize_t len)
69{
70 return -ENODEV;
71}
72
67static inline int of_device_uevent_modalias(struct device *dev, 73static inline int of_device_uevent_modalias(struct device *dev,
68 struct kobj_uevent_env *env) 74 struct kobj_uevent_env *env)
69{ 75{