From: Erik M. <er...@us...> - 2001-10-07 15:27:37
|
Update of /cvsroot/blob/blob/include/blob In directory usw-pr-cvs1:/tmp/cvs-serv19110 Modified Files: command.h flash.h init.h main.h memory.h memsetup.h param_block.h serial.h util.h Log Message: fix include directives in include files Index: command.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/command.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- command.h 2001/10/07 15:17:49 1.1 +++ command.h 2001/10/07 15:27:35 1.2 @@ -34,7 +34,7 @@ #ifndef BLOB_COMMAND_H #define BLOB_COMMAND_H -#include "types.h" +#include <blob/types.h> #define COMMAND_MAGIC (0x436d6420) /* "Cmd " */ Index: flash.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/flash.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- flash.h 2001/10/07 15:17:49 1.1 +++ flash.h 2001/10/07 15:27:35 1.2 @@ -34,7 +34,7 @@ #ifndef BLOB_FLASH_H #define BLOB_FLASH_H -#include "types.h" +#include <blob/types.h> #define NUM_FLASH_BLOCKS (31) #define FLASH_BLOCK_BASE ((u32 *) 0x020000) Index: init.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/init.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- init.h 2001/10/07 15:17:49 1.1 +++ init.h 2001/10/07 15:27:35 1.2 @@ -24,7 +24,7 @@ #ifndef BLOB_INIT_H #define BLOB_INIT_H -#include "types.h" +#include <blob/types.h> #define INIT_MAGIC (0x496e6974) /* "Init" */ #define EXIT_MAGIC (0x45786974) /* "Exit" */ Index: main.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/main.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- main.h 2001/10/07 15:17:49 1.1 +++ main.h 2001/10/07 15:27:35 1.2 @@ -89,9 +89,9 @@ #define RAMDISK_SIZE (8 * 1024) -#include "types.h" -#include "serial.h" -#include <asm/setup.h> +#include <blob/types.h> +#include <blob/serial.h> +#include <asm-arm/setup.h> typedef enum { Index: memory.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/memory.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- memory.h 2001/10/07 15:17:49 1.1 +++ memory.h 2001/10/07 15:27:35 1.2 @@ -24,7 +24,7 @@ #ifndef BLOB_MEMORY_H #define BLOB_MEMORY_H -#include "types.h" +#include <blob/types.h> /* The number of memory areas. Needs to be large to be able to detect * aliases. Index: memsetup.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/memsetup.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- memsetup.h 2001/10/07 15:17:49 1.1 +++ memsetup.h 2001/10/07 15:27:35 1.2 @@ -29,6 +29,9 @@ #ident "$Id$" +#ifndef BLOB_MEMSETUP_H +#define BLOB_MEMSETUP_H + /********************************************************************** * Memory Config Register Indices * based on 0xA0000000 @@ -67,3 +70,5 @@ #define MDREFR_EAPD (1 << 28) #define MDREFR_KAPD (1 << 29) #define MDREFR_SLFRSH (1 << 31) + +#endif Index: param_block.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/param_block.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- param_block.h 2001/10/07 15:17:49 1.1 +++ param_block.h 2001/10/07 15:27:35 1.2 @@ -35,7 +35,7 @@ #ifndef BLOB_PARAM_BLOCK_H #define BLOB_PARAM_BLOCK_H -#include "types.h" +#include <blob/types.h> #define PTAG_MAGIC 0x32d27000 /* base 26 blob */ Index: serial.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/serial.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- serial.h 2001/10/07 15:17:49 1.1 +++ serial.h 2001/10/07 15:27:35 1.2 @@ -35,7 +35,7 @@ #define BLOB_SERIAL_H -#include "types.h" +#include <blob/types.h> typedef enum { /* Some useful SA-1100 baud rates */ Index: util.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/util.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- util.h 2001/10/07 15:17:49 1.1 +++ util.h 2001/10/07 15:27:35 1.2 @@ -35,7 +35,7 @@ #ifndef BLOB_UTIL_H #define BLOB_UTIL_H -#include "types.h" +#include <blob/types.h> void MyMemCpy(u32 *dest, const u32 *src, int numWords); void MyMemCpyChar(char *dest, const char *src, int numBytes); |