linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: linux-serial <linux-serial@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>
Subject: Re: [PATCH v1 1/1] serial: 8250_exar: derive nr_ports from ID for Acces I/O cards
Date: Thu, 23 Dec 2021 12:05:11 +0200 (EET)	[thread overview]
Message-ID: <6c60d8c1-ff64-8e93-79f1-1a3dd352d7a2@linux.intel.com> (raw)
In-Reply-To: <20211222194413.75069-1-andriy.shevchenko@linux.intel.com>

On Wed, 22 Dec 2021, Andy Shevchenko wrote:

> In the similar way how it's done in 8250_pericom, derive number of
> UART ports from PCI ID for Acces I/O cards.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/tty/serial/8250/8250_exar.c | 37 ++++++++++-------------------
>  1 file changed, 13 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c
> index a4508ac0cac9..cf16bd889abd 100644
> --- a/drivers/tty/serial/8250/8250_exar.c
> +++ b/drivers/tty/serial/8250/8250_exar.c
> @@ -611,7 +611,12 @@ exar_pci_probe(struct pci_dev *pcidev, const struct pci_device_id *ent)
>  
>  	maxnr = pci_resource_len(pcidev, bar) >> (board->reg_shift + 3);
>  
> -	nr_ports = board->num_ports ? board->num_ports : pcidev->device & 0x0f;
> +	if (pcidev->vendor == PCI_VENDOR_ID_ACCESSIO)
> +		nr = BIT(((pcidev->device & 0x38) >> 3) - 1);

Shouldn't this be nr_ports = ...

-- 
 i.


> +	else if (board->num_ports)
> +		nr_ports = board->num_ports;
> +	else
> +		nr_ports = pcidev->device & 0x0f;
>  
>  	priv = devm_kzalloc(&pcidev->dev, struct_size(priv, line, nr_ports), GFP_KERNEL);
>  	if (!priv)
> @@ -710,22 +715,6 @@ static int __maybe_unused exar_resume(struct device *dev)
>  
>  static SIMPLE_DEV_PM_OPS(exar_pci_pm, exar_suspend, exar_resume);
>  
> -static const struct exar8250_board acces_com_2x = {
> -	.num_ports	= 2,
> -	.setup		= pci_xr17c154_setup,
> -};
> -
> -static const struct exar8250_board acces_com_4x = {
> -	.num_ports	= 4,
> -	.setup		= pci_xr17c154_setup,
> -};
> -
> -static const struct exar8250_board acces_com_8x = {
> -	.num_ports	= 8,
> -	.setup		= pci_xr17c154_setup,
> -};
> -
> -
>  static const struct exar8250_board pbn_fastcom335_2 = {
>  	.num_ports	= 2,
>  	.setup		= pci_fastcom335_setup,
> @@ -810,13 +799,13 @@ static const struct exar8250_board pbn_exar_XR17V8358 = {
>  	}
>  
>  static const struct pci_device_id exar_pci_tbl[] = {
> -	EXAR_DEVICE(ACCESSIO, COM_2S, acces_com_2x),
> -	EXAR_DEVICE(ACCESSIO, COM_4S, acces_com_4x),
> -	EXAR_DEVICE(ACCESSIO, COM_8S, acces_com_8x),
> -	EXAR_DEVICE(ACCESSIO, COM232_8, acces_com_8x),
> -	EXAR_DEVICE(ACCESSIO, COM_2SM, acces_com_2x),
> -	EXAR_DEVICE(ACCESSIO, COM_4SM, acces_com_4x),
> -	EXAR_DEVICE(ACCESSIO, COM_8SM, acces_com_8x),
> +	EXAR_DEVICE(ACCESSIO, COM_2S, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM_4S, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM_8S, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM232_8, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM_2SM, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM_4SM, pbn_exar_XR17C15x),
> +	EXAR_DEVICE(ACCESSIO, COM_8SM, pbn_exar_XR17C15x),
>  
>  	CONNECT_DEVICE(XR17C152, UART_2_232, pbn_connect),
>  	CONNECT_DEVICE(XR17C154, UART_4_232, pbn_connect),
> 


  reply	other threads:[~2021-12-23 10:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-22 19:44 [PATCH v1 1/1] serial: 8250_exar: derive nr_ports from ID for Acces I/O cards Andy Shevchenko
2021-12-23 10:05 ` Ilpo Järvinen [this message]
2021-12-23 10:18   ` Andy Shevchenko

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=6c60d8c1-ff64-8e93-79f1-1a3dd352d7a2@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --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;
as well as URLs for NNTP newsgroup(s).