]> git.baikalelectronics.ru Git - kernel.git/commitdiff
iio: dac: ad5592r: Fix a typo in the name of a function
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 25 Apr 2020 07:00:56 +0000 (09:00 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 3 May 2020 08:47:21 +0000 (09:47 +0100)
This module is related to AD5592R, not AD5593R, so be consistent in naming.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/dac/ad5592r.c

index 34ba059a77da758020120ca1e7147a40bdf16532..49308ad13c4b42f9186376f6cd3e0e2f52a8a4e9 100644 (file)
@@ -98,7 +98,7 @@ static int ad5592r_reg_read(struct ad5592r_state *st, u8 reg, u16 *value)
        return 0;
 }
 
-static int ad5593r_gpio_read(struct ad5592r_state *st, u8 *value)
+static int ad5592r_gpio_read(struct ad5592r_state *st, u8 *value)
 {
        int ret;
 
@@ -121,7 +121,7 @@ static const struct ad5592r_rw_ops ad5592r_rw_ops = {
        .read_adc = ad5592r_read_adc,
        .reg_write = ad5592r_reg_write,
        .reg_read = ad5592r_reg_read,
-       .gpio_read = ad5593r_gpio_read,
+       .gpio_read = ad5592r_gpio_read,
 };
 
 static int ad5592r_spi_probe(struct spi_device *spi)