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>.
This commit is contained in:
okuji 2002-04-20 00:43:10 +00:00
parent e6e09deced
commit b687a97ef2
3 changed files with 9 additions and 3 deletions

View file

@ -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> 2002-04-17 Yoshinori K. Okuji <okuji@enbug.org>
* stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set * stage2/builtins.c [SUPPORT_SERIAL] (terminal_func): Set

1
THANKS
View file

@ -51,6 +51,7 @@ John Goerzen <jgoerzen@complete.org>
John Tobey <spam@john-edwin-tobey.org> John Tobey <spam@john-edwin-tobey.org>
Josip Rodin <joy@cibalia.gkvk.hr> Josip Rodin <joy@cibalia.gkvk.hr>
Julien Bordet <julien.bordet@int-evry.fr> Julien Bordet <julien.bordet@int-evry.fr>
Julien Perrot <julien.perrot@iie.cnam.fr>
Kalle Olavi Niemitalo <tosi@ees2.oulu.fi> Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
Khimenko Victor <grub@khim.sch57.msk.ru> Khimenko Victor <grub@khim.sch57.msk.ru>
Klaus Reichl <klaus.reichl@alcatel.at> Klaus Reichl <klaus.reichl@alcatel.at>

View file

@ -1,6 +1,6 @@
/* /*
* GRUB -- GRand Unified Bootloader * 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 * 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 * 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 }, { 0x11F6, 0x9881, tulip_probe },
# endif /* INCLUDE_TULIP */ # endif /* INCLUDE_TULIP */
# ifdef INCLUDE_DAVICOM # ifdef INCLUDE_DAVICOM
{ PC_VENDOR_ID_DAVICOM, PC_DEVICE_ID_DM9102, davicom_probe }, { PCI_VENDOR_ID_DAVICOM, PCI_DEVICE_ID_DM9102, davicom_probe },
{ PC_VENDOR_ID_DAVICOM, PC_DEVICE_ID_DM9009, davicom_probe }, { PCI_VENDOR_ID_DAVICOM, PCI_DEVICE_ID_DM9009, davicom_probe },
# endif /* INCLUDE_DAVICOM */ # endif /* INCLUDE_DAVICOM */
# ifdef INCLUDE_VIA_RHINE # ifdef INCLUDE_VIA_RHINE
{ PCI_VENDOR_ID_VIATEC, PCI_DEVICE_ID_VIA_VT6102, rhine_probe }, { PCI_VENDOR_ID_VIATEC, PCI_DEVICE_ID_VIA_VT6102, rhine_probe },