summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTroy Kisky <troy.kisky@boundarydevices.com>2013-03-11 14:50:16 -0700
committerEric Nelson <eric.nelson@boundarydevices.com>2013-09-03 14:06:22 -0700
commitd4806c1a82786eda9d926966f847aa2fbe67a10b (patch)
treef4df9607d575e1603f97d4b967826b58dd358751 /drivers
parenta77d6a28dcc701fcaf5fe2b4d78b4a20a1a718b8 (diff)
gpio-i2cmux: use subsys_initcall so that hdmi can probe successfully
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/muxes/gpio-i2cmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/muxes/gpio-i2cmux.c b/drivers/i2c/muxes/gpio-i2cmux.c
index 7b6ce624cd6e..8fa9411ecb3d 100644
--- a/drivers/i2c/muxes/gpio-i2cmux.c
+++ b/drivers/i2c/muxes/gpio-i2cmux.c
@@ -175,7 +175,7 @@ static void __exit gpiomux_exit(void)
platform_driver_unregister(&gpiomux_driver);
}
-module_init(gpiomux_init);
+subsys_initcall(gpiomux_init);
module_exit(gpiomux_exit);
MODULE_DESCRIPTION("GPIO-based I2C multiplexer driver");