linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe.
@ 2013-01-07 21:17 Matt Schulte
  2013-01-07 21:17 ` [PATCH 2/2] Fix incorrect num_ports on pbn_b0_8_1152000_200 boards structure Matt Schulte
  2013-01-14 15:25 ` [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
  0 siblings, 2 replies; 5+ messages in thread
From: Matt Schulte @ 2013-01-07 21:17 UTC (permalink / raw)
  To: alan; +Cc: linux-serial, Matt Schulte


Signed-off-by: Matt Schulte <matts@commtech-fastcom.com>
---
 drivers/tty/serial/8250/8250_pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index 26b9dc0..18f1d79 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -1301,9 +1301,9 @@ pci_wch_ch353_setup(struct serial_private *priv,
 #define PCI_VENDOR_ID_AGESTAR		0x5372
 #define PCI_DEVICE_ID_AGESTAR_9375	0x6872
 #define PCI_VENDOR_ID_ASIX		0x9710
-#define PCI_DEVICE_ID_COMMTECH_4222PCIE 0x0019
 #define PCI_DEVICE_ID_COMMTECH_4224PCIE	0x0020
 #define PCI_DEVICE_ID_COMMTECH_4228PCIE	0x0021
+#define PCI_DEVICE_ID_COMMTECH_4222PCIE 0x0022
 
 
 /* Unknown vendors/cards - this should not be in linux/pci_ids.h */
-- 
1.7.2.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] Fix incorrect num_ports on pbn_b0_8_1152000_200 boards structure.
  2013-01-07 21:17 [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
@ 2013-01-07 21:17 ` Matt Schulte
  2013-01-14 15:25 ` [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
  1 sibling, 0 replies; 5+ messages in thread
From: Matt Schulte @ 2013-01-07 21:17 UTC (permalink / raw)
  To: alan; +Cc: linux-serial, Matt Schulte


Signed-off-by: Matt Schulte <matts@commtech-fastcom.com>
---
 drivers/tty/serial/8250/8250_pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index 18f1d79..c8ec5fc 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -2246,7 +2246,7 @@ static struct pciserial_board pci_boards[] = {
 
 	[pbn_b0_8_1152000_200] = {
 		.flags		= FL_BASE0,
-		.num_ports	= 2,
+		.num_ports	= 8,
 		.base_baud	= 1152000,
 		.uart_offset	= 0x200,
 	},
-- 
1.7.2.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe.
  2013-01-07 21:17 [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
  2013-01-07 21:17 ` [PATCH 2/2] Fix incorrect num_ports on pbn_b0_8_1152000_200 boards structure Matt Schulte
@ 2013-01-14 15:25 ` Matt Schulte
  2013-01-14 16:12   ` Greg KH
  1 sibling, 1 reply; 5+ messages in thread
From: Matt Schulte @ 2013-01-14 15:25 UTC (permalink / raw)
  To: alan; +Cc: linux-serial, Matt Schulte

Is there anything I need to do to get these commits accepted?

Thanks
Matt Schulte
Commtech, Inc.
Voice: 316-636-1131
Fax: 316-636-1163
http://www.commtech-fastcom.com


On Mon, Jan 7, 2013 at 3:17 PM, Matt Schulte <matts@commtech-fastcom.com> wrote:
>
> Signed-off-by: Matt Schulte <matts@commtech-fastcom.com>
> ---
>  drivers/tty/serial/8250/8250_pci.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
> index 26b9dc0..18f1d79 100644
> --- a/drivers/tty/serial/8250/8250_pci.c
> +++ b/drivers/tty/serial/8250/8250_pci.c
> @@ -1301,9 +1301,9 @@ pci_wch_ch353_setup(struct serial_private *priv,
>  #define PCI_VENDOR_ID_AGESTAR          0x5372
>  #define PCI_DEVICE_ID_AGESTAR_9375     0x6872
>  #define PCI_VENDOR_ID_ASIX             0x9710
> -#define PCI_DEVICE_ID_COMMTECH_4222PCIE 0x0019
>  #define PCI_DEVICE_ID_COMMTECH_4224PCIE        0x0020
>  #define PCI_DEVICE_ID_COMMTECH_4228PCIE        0x0021
> +#define PCI_DEVICE_ID_COMMTECH_4222PCIE 0x0022
>
>
>  /* Unknown vendors/cards - this should not be in linux/pci_ids.h */
> --
> 1.7.2.5
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe.
  2013-01-14 15:25 ` [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
@ 2013-01-14 16:12   ` Greg KH
  2013-01-14 16:14     ` Matt Schulte
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2013-01-14 16:12 UTC (permalink / raw)
  To: Matt Schulte; +Cc: alan, linux-serial

On Mon, Jan 14, 2013 at 09:25:33AM -0600, Matt Schulte wrote:
> Is there anything I need to do to get these commits accepted?

I should be able to get through all of the serial and tty patches by the
end of the week, depending on other issues that might pop up.  Thanks
for your patience, they aren't lost, I'm just behind due to the
holiday.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe.
  2013-01-14 16:12   ` Greg KH
@ 2013-01-14 16:14     ` Matt Schulte
  0 siblings, 0 replies; 5+ messages in thread
From: Matt Schulte @ 2013-01-14 16:14 UTC (permalink / raw)
  To: Greg KH; +Cc: alan, linux-serial

No worries, thanks for letting me know.

Matt

On Mon, Jan 14, 2013 at 10:12 AM, Greg KH <gregkh@linuxfoundation.org> wrote:
> I should be able to get through all of the serial and tty patches by the
> end of the week, depending on other issues that might pop up.  Thanks
> for your patience, they aren't lost, I'm just behind due to the
> holiday.



Matt Schulte
Commtech, Inc.
Voice: 316-636-1131
Fax: 316-636-1163
http://www.commtech-fastcom.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-14 16:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-07 21:17 [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
2013-01-07 21:17 ` [PATCH 2/2] Fix incorrect num_ports on pbn_b0_8_1152000_200 boards structure Matt Schulte
2013-01-14 15:25 ` [PATCH 1/2] Fix incorrect device ID for the Commtech 422/2-PCIe Matt Schulte
2013-01-14 16:12   ` Greg KH
2013-01-14 16:14     ` Matt Schulte

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).