diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2006-05-16 21:56:22 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2006-05-16 21:56:22 +0000 |
commit | db880270dac5c85e95cef5f94d2610c1cdf13b0b (patch) | |
tree | e53a74d55cb5b5556a368e912b5c02168fa53390 /sys/dev/pci | |
parent | 2420eb23b5834fe2ac0145661309115e9e2a955c (diff) |
Labeling was the wrong way around. Make 5e 5i and vice versa.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/mfi_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/mfi_pci.c b/sys/dev/pci/mfi_pci.c index d5b62457725..d861b9824fe 100644 --- a/sys/dev/pci/mfi_pci.c +++ b/sys/dev/pci/mfi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi_pci.c,v 1.6 2006/04/26 01:18:20 marco Exp $ */ +/* $OpenBSD: mfi_pci.c,v 1.7 2006/05/16 21:56:21 marco Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -56,9 +56,9 @@ struct mfi_pci_device { { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MSAS, 0, 0, "", 0 }, { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_PERC5, - PCI_VENDOR_DELL, 0x1f01, "Dell PERC 5/i", 0 }, + PCI_VENDOR_DELL, 0x1f01, "Dell PERC 5/e", 0 }, { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_PERC5, - PCI_VENDOR_DELL, 0x1f02, "Dell PERC 5/e", 0 }, + PCI_VENDOR_DELL, 0x1f02, "Dell PERC 5/i", 0 }, { 0 } }; |