diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2014-02-28 11:41:43 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-18 10:49:52 +0000 |
commit | 677620952a0fd1b1618bed57c1ebd94bf3c710f3 (patch) | |
tree | c34df7a35aaefbdffef34070f50a3a0d1d2d44cc /drivers/mfd | |
parent | 3e5a45f7f16e9f71c0e2ce4f8f5827a8298a8362 (diff) | |
download | op-kernel-dev-677620952a0fd1b1618bed57c1ebd94bf3c710f3.zip op-kernel-dev-677620952a0fd1b1618bed57c1ebd94bf3c710f3.tar.gz |
mfd: sec-irq: Use consistent S2MPS11 RTC alarm interrupt indexes
The S2MPS11 RTC has two alarms: alarm0 and alarm1 (corresponding
interrupts are named similarly). Use consistent names for interrupts to
limit possible errors.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/sec-irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mfd/sec-irq.c b/drivers/mfd/sec-irq.c index 4de494f..e403c29 100644 --- a/drivers/mfd/sec-irq.c +++ b/drivers/mfd/sec-irq.c @@ -59,13 +59,13 @@ static const struct regmap_irq s2mps11_irqs[] = { .reg_offset = 1, .mask = S2MPS11_IRQ_RTC60S_MASK, }, - [S2MPS11_IRQ_RTCA1] = { + [S2MPS11_IRQ_RTCA0] = { .reg_offset = 1, - .mask = S2MPS11_IRQ_RTCA1_MASK, + .mask = S2MPS11_IRQ_RTCA0_MASK, }, - [S2MPS11_IRQ_RTCA2] = { + [S2MPS11_IRQ_RTCA1] = { .reg_offset = 1, - .mask = S2MPS11_IRQ_RTCA2_MASK, + .mask = S2MPS11_IRQ_RTCA1_MASK, }, [S2MPS11_IRQ_SMPL] = { .reg_offset = 1, |