From: Russ D. <ru...@us...> - 2001-09-02 23:35:31
|
Update of /cvsroot/blob/blob/include In directory usw-pr-cvs1:/tmp/cvs-serv7689/include Modified Files: memory.h param_block.h Log Message: Put terminal baud in core tag so it can be parsed early Index: memory.h =================================================================== RCS file: /cvsroot/blob/blob/include/memory.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- memory.h 2001/09/02 02:29:54 1.3 +++ memory.h 2001/09/02 23:35:28 1.4 @@ -45,7 +45,7 @@ void get_memory_map(void); -void show_memory_map(void); + Index: param_block.h =================================================================== RCS file: /cvsroot/blob/blob/include/param_block.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- param_block.h 2001/09/02 03:08:20 1.3 +++ param_block.h 2001/09/02 23:35:28 1.4 @@ -60,7 +60,9 @@ #define PTAG_CORE (PTAG_MAGIC | 1) struct ptag_core { - /* some important core paramater goes here */ + /* important core paramaters go here */ + u32 terminal; /* the baud rate at which communication with + * the user is performed */ }; @@ -92,8 +94,6 @@ #define PTAG_BAUD (PTAG_MAGIC | 5) struct ptag_baud { /* see your local sa11x0 manual for acceptable values */ - u32 terminal; /* the baud rate at which communication with - * the user is performed */ u32 download; /* the baud rate at which downloads occur */ }; @@ -156,8 +156,8 @@ #define for_each_ptag(t,base) \ for (t = base; t->hdr.size; t = ptag_next(t)) - +int parse_ptag(const struct ptag *ptag, u32 *conf); void parse_ptags(void *t, u32 *conf); #endif |