Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934018AbbLWKQQ (ORCPT ); Wed, 23 Dec 2015 05:16:16 -0500 Received: from mailgw02.mediatek.com ([210.61.82.184]:59464 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S933998AbbLWKQO (ORCPT ); Wed, 23 Dec 2015 05:16:14 -0500 X-Listener-Flag: 11101 From: Henry Chen To: Mark Brown CC: Liam Girdwood , Matthias Brugger , Mark Rutland , Sascha Hauer , , , , , Subject: [PATCH] regulator: mt6397: convert to arch_initcall Date: Wed, 23 Dec 2015 18:16:08 +0800 Message-ID: <1450865768-10317-1-git-send-email-henryc.chen@mediatek.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1314 Lines: 35 Due to some device may need reulator operation in earlier boot time like gpu module which power domain need regulator power on first. Move regulator of mt6397 initialization earlier in boot so that real devices can use regulator without probe deferring. Signed-off-by: Henry Chen --- drivers/regulator/mt6397-regulator.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/regulator/mt6397-regulator.c b/drivers/regulator/mt6397-regulator.c index a5b2f47..9b89023 100644 --- a/drivers/regulator/mt6397-regulator.c +++ b/drivers/regulator/mt6397-regulator.c @@ -324,7 +324,11 @@ static struct platform_driver mt6397_regulator_driver = { .probe = mt6397_regulator_probe, }; -module_platform_driver(mt6397_regulator_driver); +static int __init mt6397_regulator_init(void) +{ + return platform_driver_register(&mt6397_regulator_driver); +} +arch_initcall(mt6397_regulator_init); MODULE_AUTHOR("Flora Fu "); MODULE_DESCRIPTION("Regulator Driver for MediaTek MT6397 PMIC"); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/