]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2002-04-20 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Sat, 20 Apr 2002 00:43:10 +0000 (00:43 +0000)
committerokuji <okuji@localhost>
Sat, 20 Apr 2002 00:43:10 +0000 (00:43 +0000)
* netboot/config.c (PCI_NIC) [INCLUDE_DAVICOM]: Fix typos.
Reported by Julien Perrot <julien.perrot@iie.cnam.fr>.

ChangeLog
THANKS
netboot/config.c

index 273916fefca98df55ab6e73986da8bdd1f9dbcf1..7e65f4c679698cc67a392b5e7e0ee18498c3f795 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-20  Yoshinori K. Okuji  <okuji@enbug.org>
+
+       * netboot/config.c (PCI_NIC) [INCLUDE_DAVICOM]: Fix typos.
+       Reported by Julien Perrot <julien.perrot@iie.cnam.fr>.
+       
 2002-04-17  Yoshinori K. Okuji  <okuji@enbug.org>
 
        * stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set
diff --git a/THANKS b/THANKS
index d7062e6f2d8a00e206fd98f750bce3ade5361135..f380d4e9f32026cce75bce36be01735c17027bb8 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -51,6 +51,7 @@ John Goerzen <jgoerzen@complete.org>
 John Tobey <spam@john-edwin-tobey.org>
 Josip Rodin <joy@cibalia.gkvk.hr>
 Julien Bordet <julien.bordet@int-evry.fr>
+Julien Perrot <julien.perrot@iie.cnam.fr>
 Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
 Khimenko Victor <grub@khim.sch57.msk.ru>
 Klaus Reichl <klaus.reichl@alcatel.at>
index f07f548a87190986c1bf36e14b585317402bfcb4..3949a674614509a15bdc3668a7b33c35bc622b5b 100644 (file)
@@ -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 },