Adds PCI ids for D-Link DFE-530TX+ PCI card. Checked-in.
Index: ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/devs/eth/rltk/8139/current/ChangeLog,v retrieving revision 1.11 diff -U5 -r1.11 ChangeLog --- ChangeLog 25 Feb 2009 12:57:27 -0000 1.11 +++ ChangeLog 15 Jul 2009 14:56:51 -0000 @@ -1,5 +1,9 @@ +2009-07-15 John Dallaway <[email protected]> + + * src/if_8139.c: Add 0x1186/0x1300 for D-Link DFE-530TX+ PCI card. + 2007-05-30 Hajime Ishitani <[email protected]> * src/if_8139.c: * cdl/rltk_8139_eth_drivers.cdl add write in MAC address at EEPROM by SIOCSIFHWADDR. @@ -57,11 +61,11 @@ //=========================================================================== // ####GPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2009 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 // the Free Software Foundation; either version 2 or (at your option) any // later version. Index: src/if_8139.c =================================================================== RCS file: /cvs/ecos/ecos/packages/devs/eth/rltk/8139/current/src/if_8139.c,v retrieving revision 1.11 diff -U5 -r1.11 if_8139.c --- src/if_8139.c 25 Feb 2009 12:57:27 -0000 1.11 +++ src/if_8139.c 15 Jul 2009 14:56:52 -0000 @@ -6,11 +6,11 @@ // //========================================================================== // ####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2009 Free Software Foundation, Inc. // // eCos is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2 or (at your option) any later // version. @@ -294,13 +294,14 @@ /* * Table of all known PCI device/vendor ID combinations for the RealTek 8139. * Add them as you get to know them. */ -#define CYGNUM_DEVS_ETH_RLTK_8139_KNOWN_ALIASES 3 +#define CYGNUM_DEVS_ETH_RLTK_8139_KNOWN_ALIASES 4 static pci_identifier_t known_8139_aliases[CYGNUM_DEVS_ETH_RLTK_8139_KNOWN_ALIASES] = { + { 0x1186, 0x1300, NULL }, /* D-Link DFE-530TX+ PCI card */ { 0x10ec, 0x8139, NULL }, /* This is the official RealTek vendor/device code of 8139D(L) */ { 0x11db, 0x1234, NULL}, /* SEGA DreamCast BroadBandAdapter */ { 0x10ec, 0x8129, NULL } /* This is the official RealTek vendor/device code of 8139C(L) */ };
