diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2015-06-05 09:10:21 (GMT) |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-06-10 08:14:25 (GMT) |
commit | 8405f2089488c39b10e63b6522fcabc60fbd025a (patch) | |
tree | 53e0c1c9e77e29f6d3cb10bf2fec7625618cf0c5 /drivers/gpio/gpiolib.c | |
parent | bdf7a4ae371894b4dc10b5820006b0a82d484929 (diff) | |
download | linux-8405f2089488c39b10e63b6522fcabc60fbd025a.tar.xz |
gpio: promote own request failure to pr_err()
These error messages are helpful to see that we fail to get
hogs. Promote them to real errors so they appear in the boot
crawl.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpiolib.c')
-rw-r--r-- | drivers/gpio/gpiolib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 8dfb54f..07b83a9 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -2131,13 +2131,13 @@ int gpiod_hog(struct gpio_desc *desc, const char *name, local_desc = gpiochip_request_own_desc(chip, hwnum, name); if (IS_ERR(local_desc)) { - pr_debug("requesting own GPIO %s failed\n", name); + pr_err("requesting own GPIO %s failed\n", name); return PTR_ERR(local_desc); } status = gpiod_configure_flags(desc, name, lflags, dflags); if (status < 0) { - pr_debug("setup of GPIO %s failed\n", name); + pr_err("setup of GPIO %s failed\n", name); gpiochip_free_own_desc(desc); return status; } |