sim: dv-cfi: include stdbool.h
authorMike Frysinger <vapier@gentoo.org>
Mon, 10 Oct 2011 02:41:54 +0000 (02:41 +0000)
committerMike Frysinger <vapier@gentoo.org>
Mon, 10 Oct 2011 02:41:54 +0000 (02:41 +0000)
The dv-cfi code uses the bool type but doesn't include the stdbool.h
header.  I didn't notice for Blackfin targets as the core Blackfin
header will include stdbool.h, but most targets don't do this.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
sim/common/ChangeLog
sim/common/dv-cfi.c

index f88343bb6cb299c4cf6ce70633b5733fb1d382d5..f6325725f4a39675b460df8d3b921c1fb49fb1de 100644 (file)
@@ -1,3 +1,7 @@
+2011-10-09  Mike Frysinger  <vapier@gentoo.org>
+
+       * dv-cfi.c: Include stdbool.h.
+
 2011-10-09  Mike Frysinger  <vapier@gentoo.org>
 
        * dv-cfi.c: Replace devices.h include with hw-base.h and hw-main.h.
index 42d868c8f28aa24ae4c40803d85994a3ff23a452..a1ecaf9d57b8e7bb99a0618ea61a7dfd3d93992b 100644 (file)
@@ -27,6 +27,7 @@
 #include <math.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <stdbool.h>
 #include <unistd.h>
 #ifdef HAVE_SYS_MMAN_H
 #include <sys/mman.h>