Add HALMAC_CHIP_ID_8192E to support TP-Link TL8200ND [tentative]

This commit is contained in:
Martin D Kealey 2022-09-26 16:21:16 +10:00
parent 09422f2a49
commit 643b6e6b51
2 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,7 @@ static enum halmac_chip_id halmac_to_cid[256] = {
[CHIP_ID_HW_DEF_8197F] = HALMAC_CHIP_ID_8197F,
[CHIP_ID_HW_DEF_8822C] = HALMAC_CHIP_ID_8822C,
[CHIP_ID_HW_DEF_8812F] = HALMAC_CHIP_ID_8812F,
[CHIP_ID_HW_DEF_8192E] = HALMAC_CHIP_ID_8192E,
};
static enum halmac_ret_status

View File

@ -556,6 +556,7 @@ enum halmac_chip_id {
HALMAC_CHIP_ID_8197F = 3,
HALMAC_CHIP_ID_8822C = 4,
HALMAC_CHIP_ID_8812F = 5,
HALMAC_CHIP_ID_8192E = 6,
HALMAC_CHIP_ID_UNDEFINE = 0x7F,
};