aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of_device.h
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-07-23 15:04:01 -0600
committerGrant Likely <grant.likely@secretlab.ca>2010-07-30 00:03:58 -0600
commitc6601225380088018ae93df2ba7f0bb65334d63b (patch)
treeb87880db2c72a3cd8528948d15703743bccc726d /include/linux/of_device.h
parentof/irq: Fix endian issues in parsing interrupt specifiers (diff)
downloadlinux-dev-c6601225380088018ae93df2ba7f0bb65334d63b.tar.xz
linux-dev-c6601225380088018ae93df2ba7f0bb65334d63b.zip
of/device: Make of_device_make_bus_id() usable by other code.
The AMBA bus should also use of_device_make_bus_id() when populating device out of device tree data. This patch makes the function non-static, and adds a suitable prototype in of_device.h Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'include/linux/of_device.h')
-rw-r--r--include/linux/of_device.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/of_device.h b/include/linux/of_device.h
index e11a0be7893a..35aa44ad9f2c 100644
--- a/include/linux/of_device.h
+++ b/include/linux/of_device.h
@@ -27,6 +27,7 @@
extern const struct of_device_id *of_match_device(
const struct of_device_id *matches, const struct device *dev);
+extern void of_device_make_bus_id(struct device *dev);
/**
* of_driver_match_device - Tell if a driver's of_match_table matches a device.