summaryrefslogtreecommitdiff
path: root/gpxe/src/drivers/net/dmfe.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/drivers/net/dmfe.c')
-rw-r--r--gpxe/src/drivers/net/dmfe.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gpxe/src/drivers/net/dmfe.c b/gpxe/src/drivers/net/dmfe.c
index 26021e6b..fad1737a 100644
--- a/gpxe/src/drivers/net/dmfe.c
+++ b/gpxe/src/drivers/net/dmfe.c
@@ -36,6 +36,8 @@
*
***************************************************************************/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/* to get some global routines like printf */
#include "etherboot.h"
/* to get the interface to the body of the program */
@@ -1204,10 +1206,10 @@ static struct nic_operations dmfe_operations = {
};
static struct pci_device_id dmfe_nics[] = {
- PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100"),
- PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102"),
- PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009"),
- PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132"), /* Needs probably some fixing */
+ PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100", 0),
+ PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102", 0),
+ PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009", 0),
+ PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132", 0), /* Needs probably some fixing */
};
PCI_DRIVER ( dmfe_driver, dmfe_nics, PCI_NO_CLASS );