svn commit: r192736 - head/sys/dev/msk

Pyun YongHyeon yongari at FreeBSD.org
Mon May 25 07:48:02 UTC 2009


Author: yongari
Date: Mon May 25 07:48:00 2009
New Revision: 192736
URL: http://svn.freebsd.org/changeset/base/192736

Log:
  Add device ids for Yukon FE+(88E8040, 88E8040T, 88E8048 and 88E8070).

Modified:
  head/sys/dev/msk/if_msk.c
  head/sys/dev/msk/if_mskreg.h

Modified: head/sys/dev/msk/if_msk.c
==============================================================================
--- head/sys/dev/msk/if_msk.c	Mon May 25 07:31:18 2009	(r192735)
+++ head/sys/dev/msk/if_msk.c	Mon May 25 07:48:00 2009	(r192736)
@@ -197,6 +197,14 @@ static struct msk_product {
 	    "Marvell Yukon 88E8038 Gigabit Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_8039,
 	    "Marvell Yukon 88E8039 Gigabit Ethernet" },
+	{ VENDORID_MARVELL, DEVICEID_MRVL_8040,
+	    "Marvell Yukon 88E8040 Fast Ethernet" },
+	{ VENDORID_MARVELL, DEVICEID_MRVL_8040T,
+	    "Marvell Yukon 88E8040T Fast Ethernet" },
+	{ VENDORID_MARVELL, DEVICEID_MRVL_8048,
+	    "Marvell Yukon 88E8048 Fast Ethernet" },
+	{ VENDORID_MARVELL, DEVICEID_MRVL_8070,
+	    "Marvell Yukon 88E8070 Fast Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_4361,
 	    "Marvell Yukon 88E8050 Gigabit Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_4360,

Modified: head/sys/dev/msk/if_mskreg.h
==============================================================================
--- head/sys/dev/msk/if_mskreg.h	Mon May 25 07:31:18 2009	(r192735)
+++ head/sys/dev/msk/if_mskreg.h	Mon May 25 07:48:00 2009	(r192736)
@@ -130,12 +130,16 @@
 #define DEVICEID_MRVL_8035	0x4350
 #define DEVICEID_MRVL_8036	0x4351
 #define DEVICEID_MRVL_8038	0x4352
-#define DEVICEID_MRVL_8039	0X4353
+#define DEVICEID_MRVL_8039	0x4353
+#define DEVICEID_MRVL_8040	0x4354
+#define DEVICEID_MRVL_8040T	0x4355
+#define DEVICEID_MRVL_8048	0x435A
 #define DEVICEID_MRVL_4360	0x4360
 #define DEVICEID_MRVL_4361	0x4361
 #define DEVICEID_MRVL_4362	0x4362
 #define DEVICEID_MRVL_4363	0x4363
 #define DEVICEID_MRVL_4364	0x4364
+#define DEVICEID_MRVL_8070	0x4365
 #define DEVICEID_MRVL_436A	0x436A
 
 /*


More information about the svn-src-all mailing list