[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHp75VeNhtJSa-2NJ5hCJP5yxtcaiNi-P8QA3BYCbGSNRfyvrg@mail.gmail.com>
Date: Tue, 5 Jun 2018 16:44:28 +0300
From: Andy Shevchenko <andy.shevchenko@...il.com>
To: Ricardo Ribalda Delgado <ricardo.ribalda@...il.com>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
"open list:SERIAL DRIVERS" <linux-serial@...r.kernel.org>,
Rob Herring <robh@...nel.org>, Johan Hovold <johan@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Jiri Slaby <jslaby@...e.com>
Subject: Re: [PATCH 19/19] serdev: Instantiate a ttydev serdev if acpi and of fails
On Tue, May 29, 2018 at 4:10 PM, Ricardo Ribalda Delgado
<ricardo.ribalda@...il.com> wrote:
> If a serdev ttyport controller does not have an acpi nor an of child,
> create a ttydev as a child of that controller.
>
> Doing this allows the removal, addition and replacement of ttydev devices
> at runtime.
> @@ -619,6 +619,27 @@ static inline int acpi_serdev_register_devices(struct serdev_controller *ctrl)
> }
> #endif /* CONFIG_ACPI */
>
> +
Redundant blank line.
> +#if IS_ENABLED(CONFIG_SERIAL_DEV_CTRL_TTYDEV)
> - if (ret_of && ret_acpi) {
> - dev_dbg(&ctrl->dev, "no devices registered: of:%d acpi:%d\n",
> - ret_of, ret_acpi);
> +
> +#if IS_ENABLED(CONFIG_SERIAL_DEV_CTRL_TTYDEV)
> + if (ret_of && ret_acpi && ctrl->is_ttyport)
> + ret_tty = serdev_controller_add_ttydev(ctrl);
> +#endif
> +
> + if (ret_of && ret_acpi && ret_tty) {
> + dev_dbg(&ctrl->dev,
> + "no devices registered: of:%d acpi:%d tty:%d\n",
> + ret_of, ret_acpi, ret_tty);
> ret = -ENODEV;
> goto out_dev_del;
> }
Wouldn't be better to leave above if-condition and introduce your
stuff inside it?
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists