svn commit: r202917 - head/sys/dev/ichwd

Remko Lodder remko at FreeBSD.org
Sun Jan 24 10:50:21 UTC 2010


Author: remko
Date: Sun Jan 24 10:50:20 2010
New Revision: 202917
URL: http://svn.freebsd.org/changeset/base/202917

Log:
  Add support for the NM10 chipset.
  
  PR:		kern/143118
  Submitted by:	Koshin sumitani <ksumitani at mui dot biglobe dot ne dot jp>
  Approved by:	imp (mentor, implicit)
  MFC after:	3 days

Modified:
  head/sys/dev/ichwd/ichwd.c
  head/sys/dev/ichwd/ichwd.h

Modified: head/sys/dev/ichwd/ichwd.c
==============================================================================
--- head/sys/dev/ichwd/ichwd.c	Sun Jan 24 10:35:26 2010	(r202916)
+++ head/sys/dev/ichwd/ichwd.c	Sun Jan 24 10:50:20 2010	(r202917)
@@ -93,6 +93,7 @@ static struct ichwd_device ichwd_devices
 	{ DEVICEID_ICH7DH,   "Intel ICH7DH watchdog timer",	7 },
 	{ DEVICEID_ICH7M,    "Intel ICH7M watchdog timer",	7 },
 	{ DEVICEID_ICH7MDH,  "Intel ICH7MDH watchdog timer",	7 },
+	{ DEVICEID_NM10,     "Intel NM10 watchdog timer",	7 },
 	{ DEVICEID_ICH8,     "Intel ICH8 watchdog timer",	8 },
 	{ DEVICEID_ICH8DH,   "Intel ICH8DH watchdog timer",	8 },
 	{ DEVICEID_ICH8DO,   "Intel ICH8DO watchdog timer",	8 },

Modified: head/sys/dev/ichwd/ichwd.h
==============================================================================
--- head/sys/dev/ichwd/ichwd.h	Sun Jan 24 10:35:26 2010	(r202916)
+++ head/sys/dev/ichwd/ichwd.h	Sun Jan 24 10:50:20 2010	(r202917)
@@ -83,6 +83,7 @@ struct ichwd_softc {
 #define DEVICEID_ICH7		0x27b8
 #define DEVICEID_ICH7DH		0x27b0
 #define DEVICEID_ICH7M		0x27b9
+#define DEVICEID_NM10		0x27bc
 #define DEVICEID_ICH7MDH	0x27bd
 #define DEVICEID_ICH8		0x2810
 #define DEVICEID_ICH8DH		0x2812


More information about the svn-src-head mailing list