Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/alx_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ static int alx_diag_register(struct alx_adapter *adpt, u64 *data)

switch (ALX_DID(hw)) {
case ALX_DEV_ID_AR8161:
case ALX_DEV_ID_E2200:
case ALX_DEV_ID_AR8162:
case ALX_DEV_ID_AR8171:
case ALX_DEV_ID_AR8172:
Expand Down
2 changes: 2 additions & 0 deletions src/alx_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ static const char alx_drv_desc[] =
PCI_DEVICE(ALX_VENDOR_ID, device_id)}
static DEFINE_PCI_DEVICE_TABLE(alx_pci_tbl) = {
ALX_ETHER_DEVICE(ALX_DEV_ID_AR8161),
ALX_ETHER_DEVICE(ALX_DEV_ID_E2200),
ALX_ETHER_DEVICE(ALX_DEV_ID_AR8162),
ALX_ETHER_DEVICE(ALX_DEV_ID_AR8171),
ALX_ETHER_DEVICE(ALX_DEV_ID_AR8172),
Expand Down Expand Up @@ -1010,6 +1011,7 @@ static int alx_identify_hw(struct alx_adapter *adpt)

switch (ALX_DID(hw)) {
case ALX_DEV_ID_AR8161:
case ALX_DEV_ID_E2200:
case ALX_DEV_ID_AR8162:
case ALX_DEV_ID_AR8171:
case ALX_DEV_ID_AR8172:
Expand Down
1 change: 1 addition & 0 deletions src/alx_reg.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

/* pci dev-ids */
#define ALX_DEV_ID_AR8161 0x1091
#define ALX_DEV_ID_E2200 0xe091
#define ALX_DEV_ID_AR8162 0x1090
#define ALX_DEV_ID_AR8171 0x10A1
#define ALX_DEV_ID_AR8172 0x10A0
Expand Down