]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
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 985f69c3e1e3dbd9be0a849c428ef0c2a88abad1..442e5d371ac69529f557c8fc44ee4c9ed3023e28 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);
 }