diff options
| author | Tom Rini <[email protected]> | 2020-10-24 10:49:28 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-10-24 10:49:28 -0400 |
| commit | c99e87f82803500f9811b1e98926d9d25df35b38 (patch) | |
| tree | 9ed4491e17a925e5d7a50ff21af8c33080f32ef1 /post | |
| parent | 001ab99325bf82cf3284771d1312585570569740 (diff) | |
| parent | 16cc5ad0b439b1444af8134019d9d49d776fd67c (diff) | |
Merge branch '2020-10-23-misc-changes'
Highlights:
- Fix a problem with the bootm overlap tests
- Remove duplicated code in fatwrite
- Cleanup our current "misc" command code and add a new one for misc
class devices.
- Various GPIO fixes
Diffstat (limited to 'post')
| -rw-r--r-- | post/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/post.c b/post/post.c index 6687e0b75ca..0f1fe8d9057 100644 --- a/post/post.c +++ b/post/post.c @@ -189,7 +189,7 @@ static void post_get_env_flags(int *test_flags) last = 0; name = list; while (!last) { - while (*name && *name == ' ') + while (*name == ' ') name++; if (*name == 0) break; |
