svn commit: r247207 - head/sys/dev/fdt

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sat Feb 23 22:58:05 UTC 2013


Author: gonzo
Date: Sat Feb 23 22:58:04 2013
New Revision: 247207
URL: http://svnweb.freebsd.org/changeset/base/247207

Log:
  Bump per-device interrupt limit to more reasonable default.
  
  Some hardware like DMA and GPIO controllers might require
  more then 8 interrupts per device instance.
  
  Submitted by:	Daisuke Aoyama <aoyama at peach.ne.jp>
  Discussed with:	gber@, raj@

Modified:
  head/sys/dev/fdt/fdt_common.h

Modified: head/sys/dev/fdt/fdt_common.h
==============================================================================
--- head/sys/dev/fdt/fdt_common.h	Sat Feb 23 22:50:57 2013	(r247206)
+++ head/sys/dev/fdt/fdt_common.h	Sat Feb 23 22:58:04 2013	(r247207)
@@ -39,7 +39,7 @@
 
 #define FDT_MEM_REGIONS	8
 
-#define DI_MAX_INTR_NUM	8
+#define DI_MAX_INTR_NUM	32
 
 struct fdt_pci_range {
 	u_long	base_pci;


More information about the svn-src-head mailing list