diff options
author | Anthony Best <anthonybest@bestanthony.com> | 2016-10-04 23:15:42 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-10-24 17:33:11 +0300 |
commit | 08bcd3edec2559833aa0ed0213cc300fc9705dd6 (patch) | |
tree | a7c0eeafd9fcab4513ce175574bbe1398d1b8d6e /include/linux/gpio | |
parent | 07d9a380680d1c0eb51ef87ff2eab5c994949e69 (diff) | |
download | linux-08bcd3edec2559833aa0ed0213cc300fc9705dd6.tar.xz |
gpio: fix struct gpio_chip comment
It should have been @reg_clr instead of @reg_clk
Signed-off-by: Anthony Best <anthonybest@bestanthony.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/gpio')
-rw-r--r-- | include/linux/gpio/driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h index 24e2cc56beb1..2dfcf25b1724 100644 --- a/include/linux/gpio/driver.h +++ b/include/linux/gpio/driver.h @@ -91,7 +91,7 @@ enum single_ended_mode { * bit. This callback assigns the right bit mask. * @reg_dat: data (in) register for generic GPIO * @reg_set: output set register (out=high) for generic GPIO - * @reg_clk: output clear register (out=low) for generic GPIO + * @reg_clr: output clear register (out=low) for generic GPIO * @reg_dir: direction setting register for generic GPIO * @bgpio_bits: number of register bits used for a generic GPIO i.e. * <register width> * 8 |