View | Details | Raw Unified | Return to bug 18735
Collapse All | Expand All

(-)if_dc.c (+3 lines)
Lines 193-198 Link Here
193
		"82c168 PNIC 10/100BaseTX" },
193
		"82c168 PNIC 10/100BaseTX" },
194
	{ DC_VENDORID_LO, DC_DEVICEID_82C168,
194
	{ DC_VENDORID_LO, DC_DEVICEID_82C168,
195
		"82c169 PNIC 10/100BaseTX" },
195
		"82c169 PNIC 10/100BaseTX" },
196
	{ DC_VENDORID_ACCTON, DC_DEVICEID_EN1217,
197
		"Accton EN1217 10/100BaseTX" },
196
	{ 0, 0, NULL }
198
	{ 0, 0, NULL }
197
};
199
};
198
200
Lines 1548-1553 Link Here
1548
		sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
1550
		sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
1549
		break;
1551
		break;
1550
	case DC_DEVICEID_987x5:
1552
	case DC_DEVICEID_987x5:
1553
	case DC_DEVICEID_EN1217:
1551
		sc->dc_type = DC_TYPE_987x5;
1554
		sc->dc_type = DC_TYPE_987x5;
1552
		sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
1555
		sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
1553
		break;
1556
		break;
(-)if_dcreg.h (+10 lines)
Lines 793-798 Link Here
793
#define DC_REVISION_88141	0x10
793
#define DC_REVISION_88141	0x10
794
794
795
/*
795
/*
796
 * Accton vendor ID.
797
 */
798
#define	DC_VENDORID_ACCTON		0x1113
799
800
/*
801
 * Accton device IDs.
802
 */
803
#define	DC_DEVICEID_EN1217	0x1217
804
805
/*
796
 * PCI low memory base and low I/O base register, and
806
 * PCI low memory base and low I/O base register, and
797
 * other PCI registers.
807
 * other PCI registers.
798
 */
808
 */

Return to bug 18735