diff options
author | Simon Glass | 2017-09-05 19:49:48 -0600 |
---|---|---|
committer | Bin Meng | 2017-09-16 14:57:44 +0800 |
commit | 066b25b6c4995d1e04dbafdb7dfb4fe55630b586 (patch) | |
tree | 0994a77748a28c3b27878a7acb2f5d38a386ab32 /include/bootstage.h | |
parent | 2ff50f5fa4009adf5e23a69a4269e6bb054edd79 (diff) |
bootstage: Drop unused options
The CONFIG_BOOTSTAGE_USER_COUNT option is no-longer needed since we can now
support any number of user IDs. Also BOOTSTAGE_ID_COUNT is not needed now.
Drop these unused options.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/bootstage.h')
-rw-r--r-- | include/bootstage.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index c5d93f57fd7..7a524782bae 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -12,11 +12,6 @@ #ifndef _BOOTSTAGE_H #define _BOOTSTAGE_H -/* Define this for host tools */ -#ifndef CONFIG_BOOTSTAGE_USER_COUNT -#define CONFIG_BOOTSTAGE_USER_COUNT 20 -#endif - /* Flags for each bootstage record */ enum bootstage_flags { BOOTSTAGEF_ERROR = 1 << 0, /* Error record */ @@ -208,7 +203,6 @@ enum bootstage_id { /* a few spare for the user, from here */ BOOTSTAGE_ID_USER, - BOOTSTAGE_ID_COUNT = BOOTSTAGE_ID_USER + CONFIG_BOOTSTAGE_USER_COUNT, BOOTSTAGE_ID_ALLOC, }; |