iio: adc: ti-ads7950: Fix a typo in an error message
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 4 Dec 2019 06:45:35 +0000 (07:45 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 15 Dec 2019 11:42:17 +0000 (11:42 +0000)
Fix a typo:
   s/get get/to get/

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

index 2e66e4d..f9edc12 100644 (file)
@@ -602,7 +602,7 @@ static int ti_ads7950_probe(struct spi_device *spi)
 
        st->reg = devm_regulator_get(&spi->dev, "vref");
        if (IS_ERR(st->reg)) {
-               dev_err(&spi->dev, "Failed get get regulator \"vref\"\n");
+               dev_err(&spi->dev, "Failed to get regulator \"vref\"\n");
                ret = PTR_ERR(st->reg);
                goto error_destroy_mutex;
        }