diff options
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/i2c-core.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index a96e1bf2764..80ae12048e8 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
@@ -986,7 +986,10 @@ static void __exit i2c_exit(void) | |||
986 | bus_unregister(&i2c_bus_type); | 986 | bus_unregister(&i2c_bus_type); |
987 | } | 987 | } |
988 | 988 | ||
989 | subsys_initcall(i2c_init); | 989 | /* We must initialize early, because some subsystems register i2c drivers |
990 | * in subsys_initcall() code, but are linked (and initialized) before i2c. | ||
991 | */ | ||
992 | postcore_initcall(i2c_init); | ||
990 | module_exit(i2c_exit); | 993 | module_exit(i2c_exit); |
991 | 994 | ||
992 | /* ---------------------------------------------------- | 995 | /* ---------------------------------------------------- |