Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Jun 2013 23:40:44 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r252393 - head/sys/arm/versatile
Message-ID:  <201306292340.r5TNejXs058359@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gonzo
Date: Sat Jun 29 23:40:44 2013
New Revision: 252393
URL: http://svnweb.freebsd.org/changeset/base/252393

Log:
  Enable patth-through of IRQ30 and IRQ31 to PIC just as comment states

Modified:
  head/sys/arm/versatile/versatile_sic.c

Modified: head/sys/arm/versatile/versatile_sic.c
==============================================================================
--- head/sys/arm/versatile/versatile_sic.c	Sat Jun 29 23:39:38 2013	(r252392)
+++ head/sys/arm/versatile/versatile_sic.c	Sat Jun 29 23:40:44 2013	(r252393)
@@ -110,7 +110,7 @@ versatile_sic_attach(device_t dev)
 	 * Let PCI and Ethernet interrupts pass through
 	 * IRQ25, IRQ27..IRQ31
 	 */
-	pass_irqs = (7 << 27) | (1 << 25);
+	pass_irqs = (0x1f << 27) | (1 << 25);
 	sic_write_4(sc, SIC_PICENSET, pass_irqs);
 
 	return (0);



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