From 29e4c81070d01c62fd08087ae49be9ec0e5cb1dc Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Tue, 10 Jun 2003 13:37:57 +0000 Subject: [PATCH] 2003-06-10 Marcel Telka * flash/amd.c: Changed include header files. * flash/cfi.c: Ditto. * flash/detectflash.c: Ditto. * flash/intel.c: Ditto. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@479 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- libbrux/ChangeLog | 7 +++++++ libbrux/flash/amd.c | 4 +++- libbrux/flash/cfi.c | 4 ++-- libbrux/flash/detectflash.c | 5 ++--- libbrux/flash/intel.c | 3 ++- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/libbrux/ChangeLog b/libbrux/ChangeLog index 338e1afd..1b9926e1 100644 --- a/libbrux/ChangeLog +++ b/libbrux/ChangeLog @@ -1,3 +1,10 @@ +2003-06-10 Marcel Telka + + * flash/amd.c: Changed include header files. + * flash/cfi.c: Ditto. + * flash/detectflash.c: Ditto. + * flash/intel.c: Ditto. + 2003-06-10 Marcel Telka * flash/cfi.c (cfi_detect): Changed types for some local variables. diff --git a/libbrux/flash/amd.c b/libbrux/flash/amd.c index 8763e613..e15ff2f4 100644 --- a/libbrux/flash/amd.c +++ b/libbrux/flash/amd.c @@ -34,12 +34,14 @@ #include #include #include +#include #include #include #include +#include + #include "flash.h" -#include "bus.h" static int dbg = 0; diff --git a/libbrux/flash/cfi.c b/libbrux/flash/cfi.c index 4f68cfdb..d573fe1c 100644 --- a/libbrux/flash/cfi.c +++ b/libbrux/flash/cfi.c @@ -32,8 +32,8 @@ #include #include -#include "cfi.h" -#include "bus.h" +#include +#include void cfi_array_free( cfi_array_t *cfi_array ) diff --git a/libbrux/flash/detectflash.c b/libbrux/flash/detectflash.c index 67e0adc8..ed81c4a5 100644 --- a/libbrux/flash/detectflash.c +++ b/libbrux/flash/detectflash.c @@ -37,9 +37,8 @@ #include #include - -#include "cfi.h" -#include "bus.h" +#include +#include void detectflash( bus_t *bus ) diff --git a/libbrux/flash/intel.c b/libbrux/flash/intel.c index 5f6a569e..00cfb073 100644 --- a/libbrux/flash/intel.c +++ b/libbrux/flash/intel.c @@ -42,8 +42,9 @@ #include #include +#include + #include "flash.h" -#include "bus.h" static int intel_flash_erase_block( bus_t *bus, uint32_t adr ); static int intel_flash_unlock_block( bus_t *bus, uint32_t adr );