[SCSI] aic79xx: Add ASC-29320LPE ids to driver
Simple patch to add the new PCIe version of the 29320 card. Signed-off: Mark Salyzyn <Mark_Salyzyn@adaptec.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
febb631c11
commit
d32adcb85c
|
@ -62,6 +62,7 @@ static struct pci_device_id ahd_linux_pci_id_table[] = {
|
||||||
/* aic7901 based controllers */
|
/* aic7901 based controllers */
|
||||||
ID(ID_AHA_29320A),
|
ID(ID_AHA_29320A),
|
||||||
ID(ID_AHA_29320ALP),
|
ID(ID_AHA_29320ALP),
|
||||||
|
ID(ID_AHA_29320LPE),
|
||||||
/* aic7902 based controllers */
|
/* aic7902 based controllers */
|
||||||
ID(ID_AHA_29320),
|
ID(ID_AHA_29320),
|
||||||
ID(ID_AHA_29320B),
|
ID(ID_AHA_29320B),
|
||||||
|
|
|
@ -109,7 +109,13 @@ static struct ahd_pci_identity ahd_pci_ident_table [] =
|
||||||
{
|
{
|
||||||
ID_AHA_29320ALP,
|
ID_AHA_29320ALP,
|
||||||
ID_ALL_MASK,
|
ID_ALL_MASK,
|
||||||
"Adaptec 29320ALP Ultra320 SCSI adapter",
|
"Adaptec 29320ALP PCIx Ultra320 SCSI adapter",
|
||||||
|
ahd_aic7901_setup
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID_AHA_29320LPE,
|
||||||
|
ID_ALL_MASK,
|
||||||
|
"Adaptec 29320LPE PCIe Ultra320 SCSI adapter",
|
||||||
ahd_aic7901_setup
|
ahd_aic7901_setup
|
||||||
},
|
},
|
||||||
/* aic7901A based controllers */
|
/* aic7901A based controllers */
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
#define ID_AIC7901 0x800F9005FFFF9005ull
|
#define ID_AIC7901 0x800F9005FFFF9005ull
|
||||||
#define ID_AHA_29320A 0x8000900500609005ull
|
#define ID_AHA_29320A 0x8000900500609005ull
|
||||||
#define ID_AHA_29320ALP 0x8017900500449005ull
|
#define ID_AHA_29320ALP 0x8017900500449005ull
|
||||||
|
#define ID_AHA_29320LPE 0x8017900500459005ull
|
||||||
|
|
||||||
#define ID_AIC7901A 0x801E9005FFFF9005ull
|
#define ID_AIC7901A 0x801E9005FFFF9005ull
|
||||||
#define ID_AHA_29320LP 0x8014900500449005ull
|
#define ID_AHA_29320LP 0x8014900500449005ull
|
||||||
|
|
Loading…
Reference in New Issue