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

Ed Maste emaste at FreeBSD.org
Fri Jan 22 16:05:11 UTC 2010


Author: emaste
Date: Fri Jan 22 16:05:10 2010
New Revision: 202812
URL: http://svn.freebsd.org/changeset/base/202812

Log:
  Add H55 ID from Mike Tancsa, with minor rewording from avg at .
  
  PR:		kern/143068
  Submitted by:	Mike Tancsa (Sentex)
  MFC after:	1 week

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	Fri Jan 22 15:12:01 2010	(r202811)
+++ head/sys/dev/ichwd/ichwd.c	Fri Jan 22 16:05:10 2010	(r202812)
@@ -109,6 +109,7 @@ static struct ichwd_device ichwd_devices
 	{ DEVICEID_ICH10D,   "Intel ICH10D watchdog timer",	10 },
 	{ DEVICEID_ICH10DO,  "Intel ICH10DO watchdog timer",	10 },
 	{ DEVICEID_ICH10R,   "Intel ICH10R watchdog timer",	10 },
+	{ DEVICEID_H55,      "Intel H55 watchdog timer",	10 },
 	{ 0, NULL, 0 },
 };
 

Modified: head/sys/dev/ichwd/ichwd.h
==============================================================================
--- head/sys/dev/ichwd/ichwd.h	Fri Jan 22 15:12:01 2010	(r202811)
+++ head/sys/dev/ichwd/ichwd.h	Fri Jan 22 16:05:10 2010	(r202812)
@@ -99,6 +99,7 @@ struct ichwd_softc {
 #define DEVICEID_ICH10D		0x3a1a
 #define DEVICEID_ICH10DO	0x3a14
 #define DEVICEID_ICH10R		0x3a16
+#define DEVICEID_H55		0x3b06
 
 /* ICH LPC Interface Bridge Registers (ICH5 and older) */
 #define ICH_GEN_STA		0xd4


More information about the svn-src-all mailing list