[<prev] [next>] [day] [month] [year] [list]
Message-ID: <52761.192.168.10.89.1251990725.squirrel@dbdmail.itg.ti.com>
Date: Thu, 3 Sep 2009 20:42:05 +0530 (IST)
From: "vimal singh" <vimalsingh@...com>
To: linux-omap@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: felipe.balbi@...ia.com, sameo@...nedhand.com,
dbrownell@...rs.sourceforge.net
Subject: [PATCH 1/2]: twl4030: register twl4030-pwrbuttonas a child of
twl4030-core.c
'twl4030-pwrbutton' was already made as a platform_driver so it can
be registered as a child of twl4030-core.c.
But adding twl4030-pwrbutton as our child in twl4030-core is missing
currently. This patch adds it.
Signed-off-by: Vimal Singh <vimalsingh@...com>
CC: Felipe Balbi <felipe.balbi@...ia.com>
Cc: Samuel Ortiz <sameo@...nedhand.com>
Cc: David Brownell <dbrownell@...rs.sourceforge.net>
---
This patch is compile tested only.
This patch is based on Felipe Balbi's patch posted earlier:
http://lkml.org/lkml/2009/2/28/88
drivers/mfd/twl4030-core.c | 14 ++++++++++++++
1 files changed, 14 insertions(+)
Index: linux-omap-2.6/drivers/mfd/twl4030-core.c
===================================================================
--- linux-omap-2.6.orig/drivers/mfd/twl4030-core.c
+++ linux-omap-2.6/drivers/mfd/twl4030-core.c
@@ -108,6 +108,13 @@
#define twl_has_watchdog() false
#endif
+#if defined(CONFIG_INPUT_TWL4030_PWRBUTTON) \
+ || defined(CONFIG_INPUT_TWL4030_PWRBUTTON_MODULE)
+#define twl_has_pwrbutton() true
+#else
+#define twl_has_pwrbutton() false
+#endif
+
/* Triton Core internal information (BEGIN) */
/* Last - for index max*/
@@ -538,6 +545,13 @@ add_children(struct twl4030_platform_dat
return PTR_ERR(child);
}
+ if (twl_has_pwrbutton()) {
+ child = add_child(1, "twl4030_pwrbutton",
+ NULL, 0, true, pdata->irq_base + 8 + 0, 0);
+ if (IS_ERR(child))
+ return PTR_ERR(child);
+ }
+
if (twl_has_regulator()) {
/*
child = add_regulator(TWL4030_REG_VPLL1, pdata->vpll1);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists