power: reset: gpio-restart: Fix typo when gpio reset is not found
[linux-2.6-microblaze.git] / drivers / power / reset / gpio-restart.c
index 2880cd5..308ca9d 100644 (file)
@@ -65,7 +65,7 @@ static int gpio_restart_probe(struct platform_device *pdev)
        gpio_restart->reset_gpio = devm_gpiod_get(&pdev->dev, NULL,
                        open_source ? GPIOD_IN : GPIOD_OUT_LOW);
        if (IS_ERR(gpio_restart->reset_gpio)) {
-               dev_err(&pdev->dev, "Could net get reset GPIO\n");
+               dev_err(&pdev->dev, "Could not get reset GPIO\n");
                return PTR_ERR(gpio_restart->reset_gpio);
        }