All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] net: add killer e2400 device id
@ 2015-11-24  1:18 Owen Lin
  2015-11-24 12:49 ` Sergei Shtylyov
  0 siblings, 1 reply; 3+ messages in thread
From: Owen Lin @ 2015-11-24  1:18 UTC (permalink / raw)
  To: johannes, davem, edumazet; +Cc: netdev

Add Killer E2400 device ID in alx driver.

Signed-off-by: Owen Lin olin@rivetnetworks.com

--------------------------------------------------------------------------------
diff -uprN alx_orig/main.c alx/main.c
--- alx_orig/main.c	Mon Sep  7 13:00:58 2015
+++ alx/main.c	Mon Sep  7 14:47:03 2015
@@ -1537,6 +1537,7 @@ static const struct pci_device_id alx_pc
 	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8162),
 	  .driver_data = ALX_DEV_QUIRK_MSI_INTX_DISABLE_BUG },
 	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8171) },
+	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_E2400) },
 	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8172) },
 	{}
 };
diff -uprN alx_orig/reg.h alx/reg.h
--- alx_orig/reg.h	Mon Sep  7 13:00:58 2015
+++ alx/reg.h	Mon Sep  7 14:46:16 2015
@@ -39,6 +39,7 @@
 #define ALX_DEV_ID_E2200				0xe091
 #define ALX_DEV_ID_AR8162				0x1090
 #define ALX_DEV_ID_AR8171				0x10A1
+#define ALX_DEV_ID_E2400				0xe0A1
 #define ALX_DEV_ID_AR8172				0x10A0
 
 /* rev definition,

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

* Re: [PATCH 1/1] net: add killer e2400 device id
  2015-11-24  1:18 [PATCH 1/1] net: add killer e2400 device id Owen Lin
@ 2015-11-24 12:49 ` Sergei Shtylyov
  0 siblings, 0 replies; 3+ messages in thread
From: Sergei Shtylyov @ 2015-11-24 12:49 UTC (permalink / raw)
  To: Owen Lin, johannes, davem, edumazet; +Cc: netdev

Hello.

On 11/24/2015 4:18 AM, Owen Lin wrote:

> Add Killer E2400 device ID in alx driver.
>
> Signed-off-by: Owen Lin olin@rivetnetworks.com
>
> --------------------------------------------------------------------------------
> diff -uprN alx_orig/main.c alx/main.c

    The patch should be applicable with the -p1 option.

> --- alx_orig/main.c	Mon Sep  7 13:00:58 2015
> +++ alx/main.c	Mon Sep  7 14:47:03 2015
> @@ -1537,6 +1537,7 @@ static const struct pci_device_id alx_pc
>   	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8162),
>   	  .driver_data = ALX_DEV_QUIRK_MSI_INTX_DISABLE_BUG },
>   	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8171) },
> +	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_E2400) },
>   	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8172) },
>   	{}
>   };
> diff -uprN alx_orig/reg.h alx/reg.h
> --- alx_orig/reg.h	Mon Sep  7 13:00:58 2015
> +++ alx/reg.h	Mon Sep  7 14:46:16 2015
> @@ -39,6 +39,7 @@
>   #define ALX_DEV_ID_E2200				0xe091
>   #define ALX_DEV_ID_AR8162				0x1090
>   #define ALX_DEV_ID_AR8171				0x10A1
> +#define ALX_DEV_ID_E2400				0xe0A1

    Either all upper case (which seem to follow what the other IDs have) or 
all lower case.

>   #define ALX_DEV_ID_AR8172				0x10A0
>
>   /* rev definition,

MBR, Sergei

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

* [PATCH 1/1] net: add killer e2400 device id
@ 2015-11-25  0:20 Owen Lin
  0 siblings, 0 replies; 3+ messages in thread
From: Owen Lin @ 2015-11-25  0:20 UTC (permalink / raw)
  To: johannes, davem, edumazet; +Cc: netdev

Add Killer E2400 device ID in alx driver.

Signed-off-by: Owen Lin olin@rivetnetworks.com

--------------------------------------------------------------------------------

diff -up1rN alx_orig/main.c alx/main.c
--- alx_orig/main.c	Wed Nov 25 08:01:49 2015
+++ alx/main.c	Wed Nov 25 08:05:20 2015
@@ -1539,2 +1539,3 @@ static const struct pci_device_id alx_pc
 	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8171) },
+	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_E2400) },
 	{ PCI_VDEVICE(ATTANSIC, ALX_DEV_ID_AR8172) },
diff -up1rN alx_orig/reg.h alx/reg.h
--- alx_orig/reg.h	Wed Nov 25 08:01:05 2015
+++ alx/reg.h	Wed Nov 25 08:03:39 2015
@@ -38,5 +38,6 @@
 #define ALX_DEV_ID_AR8161				0x1091
-#define ALX_DEV_ID_E2200				0xe091
+#define ALX_DEV_ID_E2200				0xE091
 #define ALX_DEV_ID_AR8162				0x1090
 #define ALX_DEV_ID_AR8171				0x10A1
+#define ALX_DEV_ID_E2400				0xE0A1
 #define ALX_DEV_ID_AR8172				0x10A0 

 /* rev definition,

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

end of thread, other threads:[~2015-11-25  0:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-24  1:18 [PATCH 1/1] net: add killer e2400 device id Owen Lin
2015-11-24 12:49 ` Sergei Shtylyov
2015-11-25  0:20 Owen Lin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.