diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2013-12-07 08:08:52 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-12-12 09:41:35 -0500 |
commit | c2eb9e7f02118764969c49879c458c9462ccabdc (patch) | |
tree | 3c3bcc0cae19d494bf1d6d714587ab9721de40e1 /drivers/pinctrl | |
parent | daa706de0f5e7a980de52673192dff4949b15549 (diff) |
pinctrl: at91: correct a few typos
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index a7549c4c83b4..6446dc804aa7 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c | |||
@@ -118,7 +118,7 @@ struct at91_pin_group { | |||
118 | }; | 118 | }; |
119 | 119 | ||
120 | /** | 120 | /** |
121 | * struct at91_pinctrl_mux_ops - describes an At91 mux ops group | 121 | * struct at91_pinctrl_mux_ops - describes an AT91 mux ops group |
122 | * on new IP with support for periph C and D the way to mux in | 122 | * on new IP with support for periph C and D the way to mux in |
123 | * periph A and B has changed | 123 | * periph A and B has changed |
124 | * So provide the right call back | 124 | * So provide the right call back |
@@ -1396,7 +1396,7 @@ static void gpio_irq_handler(unsigned irq, struct irq_desc *desc) | |||
1396 | chained_irq_enter(chip, desc); | 1396 | chained_irq_enter(chip, desc); |
1397 | for (;;) { | 1397 | for (;;) { |
1398 | /* Reading ISR acks pending (edge triggered) GPIO interrupts. | 1398 | /* Reading ISR acks pending (edge triggered) GPIO interrupts. |
1399 | * When there none are pending, we're finished unless we need | 1399 | * When there are none pending, we're finished unless we need |
1400 | * to process multiple banks (like ID_PIOCDE on sam9263). | 1400 | * to process multiple banks (like ID_PIOCDE on sam9263). |
1401 | */ | 1401 | */ |
1402 | isr = readl_relaxed(pio + PIO_ISR) & readl_relaxed(pio + PIO_IMR); | 1402 | isr = readl_relaxed(pio + PIO_ISR) & readl_relaxed(pio + PIO_IMR); |
@@ -1505,7 +1505,7 @@ static int at91_gpio_of_irq_setup(struct device_node *node, | |||
1505 | prev = gpio_chips[at91_gpio->pioc_idx - 1]; | 1505 | prev = gpio_chips[at91_gpio->pioc_idx - 1]; |
1506 | 1506 | ||
1507 | /* The top level handler handles one bank of GPIOs, except | 1507 | /* The top level handler handles one bank of GPIOs, except |
1508 | * on some SoC it can handles up to three... | 1508 | * on some SoC it can handle up to three... |
1509 | * We only set up the handler for the first of the list. | 1509 | * We only set up the handler for the first of the list. |
1510 | */ | 1510 | */ |
1511 | if (prev && prev->next == at91_gpio) | 1511 | if (prev && prev->next == at91_gpio) |