mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Added support for DELL Perc4/DI.
Reviewed by: ps Approved by: jhb MFC after: 5 days
This commit is contained in:
parent
147e2e207e
commit
ca4722f57e
1 changed files with 4 additions and 1 deletions
|
|
@ -128,6 +128,8 @@ static struct
|
|||
{0x101e, 0x1960, 0},
|
||||
{0x1000, 0x1960, PROBE_SIGNATURE},
|
||||
{0x1000, 0x0407, 0},
|
||||
{0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */
|
||||
{0x1028, 0x000f, 0}, /* perc4/di Verde*/
|
||||
{0, 0, 0}
|
||||
};
|
||||
|
||||
|
|
@ -178,7 +180,8 @@ amr_pci_attach(device_t dev)
|
|||
* Determine board type.
|
||||
*/
|
||||
command = pci_read_config(dev, PCIR_COMMAND, 1);
|
||||
if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 0x0407)){
|
||||
if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 0x0407) ||
|
||||
(pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 0x000f)) {
|
||||
/*
|
||||
* Make sure we are going to be able to talk to this board.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue