Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Jul 2010 17:50:39 +0000 (UTC)
From:      Remko Lodder <remko@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r209953 - stable/7/sys/dev/ichwd
Message-ID:  <201007121750.o6CHodiT068246@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: remko
Date: Mon Jul 12 17:50:38 2010
New Revision: 209953
URL: http://svn.freebsd.org/changeset/base/209953

Log:
  MFC r202917
  
   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:
  stable/7/sys/dev/ichwd/ichwd.c
  stable/7/sys/dev/ichwd/ichwd.h
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/ichwd/ichwd.c
==============================================================================
--- stable/7/sys/dev/ichwd/ichwd.c	Mon Jul 12 17:46:19 2010	(r209952)
+++ stable/7/sys/dev/ichwd/ichwd.c	Mon Jul 12 17:50:38 2010	(r209953)
@@ -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: stable/7/sys/dev/ichwd/ichwd.h
==============================================================================
--- stable/7/sys/dev/ichwd/ichwd.h	Mon Jul 12 17:46:19 2010	(r209952)
+++ stable/7/sys/dev/ichwd/ichwd.h	Mon Jul 12 17:50:38 2010	(r209953)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201007121750.o6CHodiT068246>