From 4076bd38a5793a4725d97d41712c302764e4259a Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 13 Oct 2010 18:01:45 -0700 Subject: [PATCH] video: tegra: dc: Move init to module_init Move dc init to the device init level so that all clocks are initialized before the late init level. This depends on I2C being initialized in the subsys init level. Change-Id: Iafe759d943b6cc90d5c6718b69e872e14d6acd4e Signed-off-by: Colin Cross --- drivers/video/tegra/dc/dc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/tegra/dc/dc.c b/drivers/video/tegra/dc/dc.c index ee9c9d9a8b92..bea8080b7d15 100644 --- a/drivers/video/tegra/dc/dc.c +++ b/drivers/video/tegra/dc/dc.c @@ -1121,4 +1121,4 @@ static void __exit tegra_dc_module_exit(void) } module_exit(tegra_dc_module_exit); -late_initcall(tegra_dc_module_init); +module_init(tegra_dc_module_init); -- 2.34.1