summaryrefslogtreecommitdiff
path: root/drivers/base/init.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-06-06 22:37:45 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2015-06-06 22:37:45 -0700
commit37ef1647b7f73d4ff4c7993984599b6c4f26443a (patch)
tree95563fd5ba2c8595215616892127cd361a3ce1fd /drivers/base/init.c
parenteadc21f5dc0d995a49b472f4a6c2a5c1a0c35964 (diff)
parent3370e13aa463adb84488ebf0e599e3dc0024315b (diff)
Merge tag 'driver-core-4.1-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core fixes from Greg KH: "Here are two fixes for the driver core that resolve some reported issues. One is a regression from 4.0, the other a fixes a reported oops that has been there since 3.19. Both have been in linux-next for a while with no problems" * tag 'driver-core-4.1-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: drivers/base: cacheinfo: handle absence of caches drivers: of/base: move of_init to driver_init
Diffstat (limited to 'drivers/base/init.c')
-rw-r--r--drivers/base/init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/base/init.c b/drivers/base/init.c
index da033d3bab3c..48c0e220acc0 100644
--- a/drivers/base/init.c
+++ b/drivers/base/init.c
@@ -8,6 +8,7 @@
#include <linux/device.h>
#include <linux/init.h>
#include <linux/memory.h>
+#include <linux/of.h>
#include "base.h"
@@ -34,4 +35,5 @@ void __init driver_init(void)
cpu_dev_init();
memory_dev_init();
container_dev_init();
+ of_core_init();
}