From b687a97ef2fc69ac16f0981117184a949163d0cd Mon Sep 17 00:00:00 2001 From: okuji Date: Sat, 20 Apr 2002 00:43:10 +0000 Subject: [PATCH] 2002-04-20 Yoshinori K. Okuji * netboot/config.c (PCI_NIC) [INCLUDE_DAVICOM]: Fix typos. Reported by Julien Perrot . --- ChangeLog | 5 +++++ THANKS | 1 + netboot/config.c | 6 +++--- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 273916fef..7e65f4c67 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-04-20 Yoshinori K. Okuji + + * netboot/config.c (PCI_NIC) [INCLUDE_DAVICOM]: Fix typos. + Reported by Julien Perrot . + 2002-04-17 Yoshinori K. Okuji * stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set diff --git a/THANKS b/THANKS index d7062e6f2..f380d4e9f 100644 --- a/THANKS +++ b/THANKS @@ -51,6 +51,7 @@ John Goerzen John Tobey Josip Rodin Julien Bordet +Julien Perrot Kalle Olavi Niemitalo Khimenko Victor Klaus Reichl diff --git a/netboot/config.c b/netboot/config.c index f07f548a8..3949a6746 100644 --- a/netboot/config.c +++ b/netboot/config.c @@ -1,6 +1,6 @@ /* * GRUB -- GRand Unified Bootloader - * Copyright (C) 2001 Free Software Foundation, Inc. + * Copyright (C) 2001,2002 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -317,8 +317,8 @@ static struct pci_dispatch_table PCI_NIC[] = { 0x11F6, 0x9881, tulip_probe }, # endif /* INCLUDE_TULIP */ # ifdef INCLUDE_DAVICOM - { PC_VENDOR_ID_DAVICOM, PC_DEVICE_ID_DM9102, davicom_probe }, - { PC_VENDOR_ID_DAVICOM, PC_DEVICE_ID_DM9009, davicom_probe }, + { PCI_VENDOR_ID_DAVICOM, PCI_DEVICE_ID_DM9102, davicom_probe }, + { PCI_VENDOR_ID_DAVICOM, PCI_DEVICE_ID_DM9009, davicom_probe }, # endif /* INCLUDE_DAVICOM */ # ifdef INCLUDE_VIA_RHINE { PCI_VENDOR_ID_VIATEC, PCI_DEVICE_ID_VIA_VT6102, rhine_probe },