From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org,
Jiri Slaby <jirislaby@kernel.org>,
Heikki Krogerus <heikki.krogerus@linux.intel.com>
Subject: Re: [PATCH v1 3/3] serial: 8250_exar: Add ->unregister_gpio() callback
Date: Wed, 9 Jun 2021 14:42:34 +0200 [thread overview]
Message-ID: <YMC3OknGE+Kzs6u2@kroah.com> (raw)
In-Reply-To: <20210608144239.12697-3-andriy.shevchenko@linux.intel.com>
On Tue, Jun 08, 2021 at 05:42:39PM +0300, Andy Shevchenko wrote:
> For the sake of reducing layering violation add ->unregister_gpio()
> callback and use it in the ->exit() one.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> drivers/tty/serial/8250/8250_exar.c | 36 ++++++++++++++++++-----------
> 1 file changed, 23 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c
> index 3ffeedc29c83..d502240bbcf2 100644
> --- a/drivers/tty/serial/8250/8250_exar.c
> +++ b/drivers/tty/serial/8250/8250_exar.c
> @@ -114,6 +114,7 @@ struct exar8250;
> struct exar8250_platform {
> int (*rs485_config)(struct uart_port *, struct serial_rs485 *);
> int (*register_gpio)(struct pci_dev *, struct uart_8250_port *);
> + void (*unregister_gpio)(struct uart_8250_port *);
> };
>
> /**
> @@ -352,9 +353,8 @@ static void setup_gpio(struct pci_dev *pcidev, u8 __iomem *p)
> writeb(0x00, p + UART_EXAR_MPIOOD_15_8);
> }
>
> -static void *
> -__xr17v35x_register_gpio(struct pci_dev *pcidev,
> - const struct software_node *node)
> +static struct platform_device *__xr17v35x_register_gpio(struct pci_dev *pcidev,
> + const struct software_node *node)
> {
> struct platform_device *pdev;
>
> @@ -374,6 +374,12 @@ __xr17v35x_register_gpio(struct pci_dev *pcidev,
> return pdev;
> }
>
> +static void __xr17v35x_unregister_gpio(struct platform_device *pdev)
> +{
> + device_remove_software_node(&pdev->dev);
> + platform_device_unregister(pdev);
> +}
> +
> static const struct property_entry exar_gpio_properties[] = {
> PROPERTY_ENTRY_U32("exar,first-pin", 0),
> PROPERTY_ENTRY_U32("ngpios", 16),
> @@ -384,8 +390,7 @@ static const struct software_node exar_gpio_node = {
> .properties = exar_gpio_properties,
> };
>
> -static int xr17v35x_register_gpio(struct pci_dev *pcidev,
> - struct uart_8250_port *port)
> +static int xr17v35x_register_gpio(struct pci_dev *pcidev, struct uart_8250_port *port)
> {
> if (pcidev->vendor == PCI_VENDOR_ID_EXAR)
> port->port.private_data =
> @@ -394,6 +399,15 @@ static int xr17v35x_register_gpio(struct pci_dev *pcidev,
> return 0;
> }
>
> +static void xr17v35x_unregister_gpio(struct uart_8250_port *port)
> +{
> + if (!port->port.private_data)
> + return;
> +
> + __xr17v35x_unregister_gpio(port->port.private_data);
> + port->port.private_data = NULL;
> +}
> +
> static int generic_rs485_config(struct uart_port *port,
> struct serial_rs485 *rs485)
> {
> @@ -419,6 +433,7 @@ static int generic_rs485_config(struct uart_port *port,
>
> static const struct exar8250_platform exar8250_default_platform = {
> .register_gpio = xr17v35x_register_gpio,
> + .unregister_gpio = xr17v35x_unregister_gpio,
> .rs485_config = generic_rs485_config,
> };
>
> @@ -484,6 +499,7 @@ static int iot2040_register_gpio(struct pci_dev *pcidev,
> static const struct exar8250_platform iot2040_platform = {
> .rs485_config = iot2040_rs485_config,
> .register_gpio = iot2040_register_gpio,
> + .unregister_gpio = xr17v35x_unregister_gpio,
> };
>
> /*
> @@ -555,17 +571,11 @@ pci_xr17v35x_setup(struct exar8250 *priv, struct pci_dev *pcidev,
>
> static void pci_xr17v35x_exit(struct pci_dev *pcidev)
> {
> + const struct exar8250_platform *platform = exar_get_platform();
> struct exar8250 *priv = pci_get_drvdata(pcidev);
> struct uart_8250_port *port = serial8250_get_port(priv->line[0]);
> - struct platform_device *pdev;
>
> - pdev = port->port.private_data;
> - if (!pdev)
> - return;
> -
> - device_remove_software_node(&pdev->dev);
> - platform_device_unregister(pdev);
> - port->port.private_data = NULL;
> + platform->unregister_gpio(port);
> }
>
> static inline void exar_misc_clear(struct exar8250 *priv)
> --
> 2.30.2
>
This patch doesn't apply to my tty-next branch, so I've dropped it :(
greg k-h
next prev parent reply other threads:[~2021-06-09 12:42 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-08 14:42 [PATCH v1 1/3] serial: 8250_exar: Avoid NULL pointer dereference at ->exit() Andy Shevchenko
2021-06-08 14:42 ` [PATCH v1 2/3] serial: 8250_exar: Extract exar_get_platform() helper Andy Shevchenko
2021-06-09 12:41 ` Greg Kroah-Hartman
2021-06-09 17:02 ` Andy Shevchenko
2021-06-08 14:42 ` [PATCH v1 3/3] serial: 8250_exar: Add ->unregister_gpio() callback Andy Shevchenko
2021-06-09 12:42 ` Greg Kroah-Hartman [this message]
2021-06-08 15:09 ` [PATCH v1 1/3] serial: 8250_exar: Avoid NULL pointer dereference at ->exit() Maxim Levitsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YMC3OknGE+Kzs6u2@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=jirislaby@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox