From: Frieder Schrempf Date: Fri, 2 Aug 2019 10:04:10 +0000 (+0000) Subject: serial: sh-sci: Don't check for mctrl_gpio_init() returning -ENOSYS X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e55a09732be9b4e13cf3b5d2b9bb41b3e60e5ea6;p=linux.git serial: sh-sci: Don't check for mctrl_gpio_init() returning -ENOSYS Now that the mctrl_gpio code returns NULL instead of ERR_PTR(-ENOSYS) if CONFIG_GPIOLIB is disabled, we can safely remove this check. Signed-off-by: Frieder Schrempf Acked-by: Uwe Kleine-Knig Link: https://lore.kernel.org/r/20190802100349.8659-3-frieder.schrempf@kontron.de Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 7a03622cdda93..7f565fcbf1ca4 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c @@ -3281,7 +3281,7 @@ static int sci_probe_single(struct platform_device *dev, return ret; sciport->gpios = mctrl_gpio_init(&sciport->port, 0); - if (IS_ERR(sciport->gpios) && PTR_ERR(sciport->gpios) != -ENOSYS) + if (IS_ERR(sciport->gpios)) return PTR_ERR(sciport->gpios); if (sciport->has_rtscts) {