of: make of_device_make_bus_id() static
authorFrank Rowand <frank.rowand@am.sony.com>
Mon, 17 Oct 2016 19:17:43 +0000 (12:17 -0700)
committerRob Herring <robh@kernel.org>
Thu, 9 Feb 2017 15:29:37 +0000 (09:29 -0600)
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>
drivers/of/platform.c
include/linux/of_device.h

index b8064bc2b6eb97a29d330f2713ce221adcc6313a..5dfcc967dd052454674364b201c30d77e19485c6 100644 (file)
@@ -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;
index cc7dd687a89dd60699ebe28556138e293bcde9bc..5c2aeed17dd45aa448e0818f7f1a2d4d6d17bdc8 100644 (file)
@@ -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.