[PATCH] Driver core: Add accessor for device platform data

From: Mark Brown
Date: Fri Jul 17 2009 - 10:06:20 EST


For consistency with driver data provide a dev_get_platdata() accessor
for reading the platform data from a device.

Signed-off-by: Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
---
include/linux/device.h | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/linux/device.h b/include/linux/device.h
index aebb810..c42d426 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -446,6 +446,11 @@ static inline void set_dev_node(struct device *dev, int node)
}
#endif

+static inline void *dev_get_platdata(const struct device *dev)
+{
+ return dev->platform_data;
+}
+
static inline void *dev_get_drvdata(const struct device *dev)
{
return dev->driver_data;
--
1.6.3.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/