diff options
-rw-r--r-- | drivers/base/core.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index 9cd3b5cfcc42..81b78ede37c4 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -1320,7 +1320,10 @@ struct root_device | |||
1320 | struct module *owner; | 1320 | struct module *owner; |
1321 | }; | 1321 | }; |
1322 | 1322 | ||
1323 | #define to_root_device(dev) container_of(dev, struct root_device, dev) | 1323 | inline struct root_device *to_root_device(struct device *d) |
1324 | { | ||
1325 | return container_of(d, struct root_device, dev); | ||
1326 | } | ||
1324 | 1327 | ||
1325 | static void root_device_release(struct device *dev) | 1328 | static void root_device_release(struct device *dev) |
1326 | { | 1329 | { |