Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 May 2010 18:45:19 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r207859 - stable/8/sys/sparc64/isa
Message-ID:  <201005101845.o4AIjJ2w035506@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Mon May 10 18:45:18 2010
New Revision: 207859
URL: http://svn.freebsd.org/changeset/base/207859

Log:
  MFC: r207241
  
  - Add a missing const.
  - Map the NS16550 found in Fujitsu Siemens PRIMEPOWER250 to PNP0501 as well.

Modified:
  stable/8/sys/sparc64/isa/isa.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/geom/sched/   (props changed)

Modified: stable/8/sys/sparc64/isa/isa.c
==============================================================================
--- stable/8/sys/sparc64/isa/isa.c	Mon May 10 18:43:44 2010	(r207858)
+++ stable/8/sys/sparc64/isa/isa.c	Mon May 10 18:45:18 2010	(r207859)
@@ -116,7 +116,7 @@ isa_init(device_t dev)
 }
 
 static const struct {
-	const char	*name;
+	const char	*const name;
 	uint32_t	id;
 } const ofw_isa_pnp_map[] = {
 	{ "SUNW,lomh",	0x0000ae4e }, /* SUN0000 */
@@ -126,6 +126,7 @@ static const struct {
 	{ "flashprom",	0x0100ae4e }, /* SUN0001 */
 	{ "parallel",	0x0104d041 }, /* PNP0401 */
 	{ "serial",	0x0105d041 }, /* PNP0501 */
+	{ "su",		0x0105d041 }, /* PNP0501 */
 	{ "i2c",	0x0200ae4e }, /* SUN0002 */
 	{ "rmc-comm",	0x0300ae4e }, /* SUN0003 */
 	{ "kb_ps2",	0x0303d041 }, /* PNP0303 */



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