1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-30 08:19:09 +00:00

Correct detection of particular wpi cards which only support b/g

and fix the output to indicate b/g not a/g

Submitted by:	ischram at telenet.be
Reviewed by:	thompsa
Approved by:	sam (co-mentor)
MFC after:	1 month
This commit is contained in:
Benjamin Close 2008-08-24 22:42:39 +00:00
parent 457af16631
commit 34f004ce88
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182127

View File

@ -148,10 +148,10 @@ static const struct wpi_ident wpi_ident_table[] = {
{ 0x8086, 0x4222, 0x0, "Intel(R) PRO/Wireless 3945ABG" },
{ 0x8086, 0x4227, 0x0, "Intel(R) PRO/Wireless 3945ABG" },
/* The below entries only support BG */
{ 0x8086, 0x4222, 0x1005, "Intel(R) PRO/Wireless 3945AB" },
{ 0x8086, 0x4222, 0x1034, "Intel(R) PRO/Wireless 3945AB" },
{ 0x8086, 0x4222, 0x1014, "Intel(R) PRO/Wireless 3945AB" },
{ 0x8086, 0x4222, 0x1044, "Intel(R) PRO/Wireless 3945AB" },
{ 0x8086, 0x4222, 0x1005, "Intel(R) PRO/Wireless 3945BG" },
{ 0x8086, 0x4222, 0x1034, "Intel(R) PRO/Wireless 3945BG" },
{ 0x8086, 0x4227, 0x1014, "Intel(R) PRO/Wireless 3945BG" },
{ 0x8086, 0x4222, 0x1044, "Intel(R) PRO/Wireless 3945BG" },
{ 0, 0, 0, NULL }
};