drivers/base/core.c: Mark to_root_device static
authorJosh Triplett <josh@joshtriplett.org>
Mon, 19 Nov 2012 05:27:55 +0000 (21:27 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:25:36 +0000 (16:25 -0800)
Nothing outside of drivers/base/core.c references this function.

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/core.c

index 985f69c..442e5d3 100644 (file)
@@ -1399,7 +1399,7 @@ struct root_device {
        struct module *owner;
 };
 
-inline struct root_device *to_root_device(struct device *d)
+static inline struct root_device *to_root_device(struct device *d)
 {
        return container_of(d, struct root_device, dev);
 }