svn commit: r295473 - head/sys/arm/qemu

Andrew Turner andrew at FreeBSD.org
Wed Feb 10 16:44:22 UTC 2016


Author: andrew
Date: Wed Feb 10 16:44:20 2016
New Revision: 295473
URL: https://svnweb.freebsd.org/changeset/base/295473

Log:
  Fix a logic inversion when checking for ARM_INTRNG
  
  Pointy hat to:	andrew

Modified:
  head/sys/arm/qemu/virt_common.c

Modified: head/sys/arm/qemu/virt_common.c
==============================================================================
--- head/sys/arm/qemu/virt_common.c	Wed Feb 10 16:39:02 2016	(r295472)
+++ head/sys/arm/qemu/virt_common.c	Wed Feb 10 16:44:20 2016	(r295473)
@@ -41,7 +41,7 @@ struct fdt_fixup_entry fdt_fixup_table[]
 	{ NULL, NULL }
 };
 
-#ifdef ARM_INTRNG
+#ifndef ARM_INTRNG
 fdt_pic_decode_t fdt_pic_table[] = {
 	&gic_decode_fdt,
 	NULL


More information about the svn-src-all mailing list