Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Nov 2013 10:40:43 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r258214 - stable/9/sys/dev/ichsmb
Message-ID:  <201311161040.rAGAehx7058501@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Sat Nov 16 10:40:43 2013
New Revision: 258214
URL: http://svnweb.freebsd.org/changeset/base/258214

Log:
  MFC r244981 (by jfv)
  Add Intel Lynx Point PCH SMBus Device IDs

Modified:
  stable/9/sys/dev/ichsmb/ichsmb_pci.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- stable/9/sys/dev/ichsmb/ichsmb_pci.c	Sat Nov 16 10:34:16 2013	(r258213)
+++ stable/9/sys/dev/ichsmb/ichsmb_pci.c	Sat Nov 16 10:40:43 2013	(r258214)
@@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
 #define ID_PATSBURG			0x1d228086
 #define ID_CPT				0x1c228086
 #define ID_PPT				0x1e228086
+#define ID_LPT				0x8c228086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -188,6 +189,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_PPT:
 		device_set_desc(dev, "Intel Panther Point SMBus controller");
 		break;
+	case ID_LPT:
+		device_set_desc(dev, "Intel Lynx Point SMBus controller");
+		break;
 	default:
 		return (ENXIO);
 	}



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