diff options
author | Frank Rowand <frank.rowand@am.sony.com> | 2016-10-17 12:17:43 -0700 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2017-02-09 09:29:37 -0600 |
commit | e553f539f2af39db5e3b2c273cc1a22d34be49ad (patch) | |
tree | 06c6b0e3afdcd8631316ba92174f4552282593c6 | |
parent | 0549bde0fcb11a95773e7dc4121738b9e653abf4 (diff) | |
download | linux-e553f539f2af39db5e3b2c273cc1a22d34be49ad.tar.gz linux-e553f539f2af39db5e3b2c273cc1a22d34be49ad.tar.bz2 linux-e553f539f2af39db5e3b2c273cc1a22d34be49ad.zip |
of: make of_device_make_bus_id() static
of_device_make_bus_id() was changed to non-static by commit c66012253800
("of/device: Make of_device_make_bus_id() usable by other code") more than
6 years ago, but there are no users of it outside of platform.c. Make the
function static again.
Signed-off-by: Frank Rowand <frank.rowand@am.sony.com>
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | drivers/of/platform.c | 2 | ||||
-rw-r--r-- | include/linux/of_device.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index b8064bc2b6eb..5dfcc967dd05 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -76,7 +76,7 @@ EXPORT_SYMBOL(of_find_device_by_node); * derive a unique name. If it cannot, then it will prepend names from * parent nodes until a unique name can be derived. */ -void of_device_make_bus_id(struct device *dev) +static void of_device_make_bus_id(struct device *dev) { struct device_node *node = dev->of_node; const __be32 *reg; diff --git a/include/linux/of_device.h b/include/linux/of_device.h index cc7dd687a89d..5c2aeed17dd4 100644 --- a/include/linux/of_device.h +++ b/include/linux/of_device.h @@ -13,7 +13,6 @@ struct device; #ifdef CONFIG_OF 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. |