From edfdc36b7c3d745ae294cdb844d7886f4e2a57da Mon Sep 17 00:00:00 2001 From: mdodd Date: Tue, 10 Aug 1999 01:03:51 +0000 Subject: Add support for the Am79C978. (AMD PCHome/PCI Ethernet adapter) See: http://www.amd.com/products/npd/overview/homenetworking/intro.html PR: kern/12275 Submitted by: Robert Watson --- sys/pci/if_lnc_p.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys/pci/if_lnc_p.c') diff --git a/sys/pci/if_lnc_p.c b/sys/pci/if_lnc_p.c index 4e66bf1..c92ffc0 100644 --- a/sys/pci/if_lnc_p.c +++ b/sys/pci/if_lnc_p.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: if_lnc_p.c,v 1.10 1999/05/10 22:39:37 paul Exp $ + * $Id: if_lnc_p.c,v 1.11 1999/07/03 20:17:04 peter Exp $ */ #include @@ -30,6 +30,7 @@ #include "lnc.h" #define PCI_DEVICE_ID_PCNet_PCI 0x20001022 +#define PCI_DEVICE_ID_PCHome_PCI 0x20011022 extern void *lnc_attach_ne2100_pci __P((int unit, unsigned iobase)); @@ -55,6 +56,9 @@ lnc_pci_probe (pcici_t tag, pcidi_t type) case PCI_DEVICE_ID_PCNet_PCI: return ("PCNet/PCI Ethernet adapter"); break; + case PCI_DEVICE_ID_PCHome_PCI: + return ("PCHome/PCI Ethernet adapter"); + break; default: break; } -- cgit v1.1