aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/da9062-core.c
diff options
context:
space:
mode:
authorS Twiss <stwiss.opensource@diasemi.com>2015-07-23 17:17:41 +0100
committerLee Jones <lee.jones@linaro.org>2015-08-11 15:09:08 +0100
commit68b6fd02e6a62d6bdb62e7e74e7c62a8ec54346e (patch)
treec8d769b75fd439d304c595a185506c1c5fce71f6 /drivers/mfd/da9062-core.c
parentmfd: max899x: Avoid redundant irq_data lookup (diff)
downloadlinux-dev-68b6fd02e6a62d6bdb62e7e74e7c62a8ec54346e.tar.xz
linux-dev-68b6fd02e6a62d6bdb62e7e74e7c62a8ec54346e.zip
mfd: da9062: Support for the DA9063 OnKey in the DA9062 core
Add MFD core driver support for a OnKey component - MFD core adds the resource da9062_onkey_resources[] for the OnKey - An appropriate value has been added into mfd_cell da9062_devs[] to support component .name = "da9062-onkey" and .of_compatible = "dlg,da9062-onkey" Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/da9062-core.c')
-rw-r--r--drivers/mfd/da9062-core.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c
index b43cd24ad188..f80d9471f2e7 100644
--- a/drivers/mfd/da9062-core.c
+++ b/drivers/mfd/da9062-core.c
@@ -123,6 +123,10 @@ static struct resource da9062_rtc_resources[] = {
DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ),
};
+static struct resource da9062_onkey_resources[] = {
+ DEFINE_RES_NAMED(DA9062_IRQ_ONKEY, 1, "ONKEY", IORESOURCE_IRQ),
+};
+
static const struct mfd_cell da9062_devs[] = {
{
.name = "da9062-core",
@@ -152,6 +156,12 @@ static const struct mfd_cell da9062_devs[] = {
.resources = da9062_rtc_resources,
.of_compatible = "dlg,da9062-rtc",
},
+ {
+ .name = "da9062-onkey",
+ .num_resources = ARRAY_SIZE(da9062_onkey_resources),
+ .resources = da9062_onkey_resources,
+ .of_compatible = "dlg,da9062-onkey",
+ },
};
static int da9062_clear_fault_log(struct da9062 *chip)