From 05dc33becdb88906f3e7deea26f5c2a7aa8a0eed Mon Sep 17 00:00:00 2001
From: Sebastien Busson <sebastienx.busson@intel.com>
Date: Fri, 29 Oct 2010 10:48:01 +0200
Subject: [PATCH 3/3] wl1271 : modified boot sequence

Modified subsys_initcall in device_initcall due to a boot sequence langwell gpio set in device_initcall
to avoid boot sequence init conflict with wl1271 driver.

Signed-off-by: Sebastien Busson <sebastienx.busson@intel.com>
---
 drivers/regulator/fixed.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c
index 2fe9d99c..1c48163 100644
--- a/drivers/regulator/fixed.c
+++ b/drivers/regulator/fixed.c
@@ -229,7 +229,7 @@ static int __init regulator_fixed_voltage_init(void)
 {
 	return platform_driver_register(&regulator_fixed_voltage_driver);
 }
-subsys_initcall(regulator_fixed_voltage_init);
+device_initcall(regulator_fixed_voltage_init);
 
 static void __exit regulator_fixed_voltage_exit(void)
 {
-- 
1.7.2.3

