Commit 2b1d18f1 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Lee Jones

extcon: max14577: Add max14577 prefix to muic_irqs

Add max14577 prefix to muic_irqs array. This prepares for max77836
support in this extcon driver.
Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Acked-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Tested-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent eccb80cc
...@@ -85,7 +85,7 @@ struct max14577_muic_irq { ...@@ -85,7 +85,7 @@ struct max14577_muic_irq {
unsigned int virq; unsigned int virq;
}; };
static struct max14577_muic_irq muic_irqs[] = { static struct max14577_muic_irq max14577_muic_irqs[] = {
{ MAX14577_IRQ_INT1_ADC, "muic-ADC" }, { MAX14577_IRQ_INT1_ADC, "muic-ADC" },
{ MAX14577_IRQ_INT1_ADCLOW, "muic-ADCLOW" }, { MAX14577_IRQ_INT1_ADCLOW, "muic-ADCLOW" },
{ MAX14577_IRQ_INT1_ADCERR, "muic-ADCError" }, { MAX14577_IRQ_INT1_ADCERR, "muic-ADCError" },
...@@ -538,9 +538,9 @@ static irqreturn_t max14577_muic_irq_handler(int irq, void *data) ...@@ -538,9 +538,9 @@ static irqreturn_t max14577_muic_irq_handler(int irq, void *data)
* However we only need to know whether it was ADC, charger * However we only need to know whether it was ADC, charger
* or both interrupts so decode IRQ and turn on proper flags. * or both interrupts so decode IRQ and turn on proper flags.
*/ */
for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) for (i = 0; i < ARRAY_SIZE(max14577_muic_irqs); i++)
if (irq == muic_irqs[i].virq) if (irq == max14577_muic_irqs[i].virq)
irq_type = muic_irqs[i].irq; irq_type = max14577_muic_irqs[i].irq;
switch (irq_type) { switch (irq_type) {
case MAX14577_IRQ_INT1_ADC: case MAX14577_IRQ_INT1_ADC:
...@@ -644,8 +644,8 @@ static int max14577_muic_probe(struct platform_device *pdev) ...@@ -644,8 +644,8 @@ static int max14577_muic_probe(struct platform_device *pdev)
INIT_WORK(&info->irq_work, max14577_muic_irq_work); INIT_WORK(&info->irq_work, max14577_muic_irq_work);
/* Support irq domain for max14577 MUIC device */ /* Support irq domain for max14577 MUIC device */
for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) { for (i = 0; i < ARRAY_SIZE(max14577_muic_irqs); i++) {
struct max14577_muic_irq *muic_irq = &muic_irqs[i]; struct max14577_muic_irq *muic_irq = &max14577_muic_irqs[i];
unsigned int virq = 0; unsigned int virq = 0;
virq = regmap_irq_get_virq(max14577->irq_data, muic_irq->irq); virq = regmap_irq_get_virq(max14577->irq_data, muic_irq->irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment