diff options
author | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 |
commit | 8bde7f776c77b343aca29b8c7b58464d915ac245 (patch) | |
tree | 20f1fd99975215e7c658454a15cdb4ed4694e2d4 /board/MAI/menu/menu.h | |
parent | 993cad9364c6b87ae429d1ed1130d8153f6f027e (diff) | |
download | u-boot-imx-8bde7f776c77b343aca29b8c7b58464d915ac245.zip u-boot-imx-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.gz u-boot-imx-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.bz2 |
* Code cleanup:
- remove trailing white space, trailing empty lines, C++ comments, etc.
- split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
- major rework of command structure
(work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'board/MAI/menu/menu.h')
-rw-r--r-- | board/MAI/menu/menu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/MAI/menu/menu.h b/board/MAI/menu/menu.h index e5886b8..8aebb7d 100644 --- a/board/MAI/menu/menu.h +++ b/board/MAI/menu/menu.h @@ -48,7 +48,7 @@ typedef struct menu_s * Text: * A single line/limited number of characters text entry box. Text can be restricted * to a certain charset (digits/hex digits/all/custom). Result is also available as an - * int if numeric. + * int if numeric. * * Selection: * One-of-many type of selection entry. User may choose on of a set of strings, which @@ -122,7 +122,7 @@ typedef struct menu_select_s int num_options; /* Number of mappings */ menu_select_option_t **options; - /* Option list array */ + /* Option list array */ } menu_select_t; @@ -133,10 +133,10 @@ typedef struct menu_routine_s { OPTION_PREAMBLE menu_routine_callback callback; - /* routine to be called */ + /* routine to be called */ void *user_data; /* User data, don't care for system */ } menu_routine_t; - + #define MENU_CUSTOM_TYPE 5 typedef void (*menu_custom_draw)(struct menu_custom_s *); |