mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
fixdep: fix coding style in previous fix
Remove a double space introduced by my previous fixdep fix.
Fixes: 76ae74d348
("fixdep: fix CONFIG_IS_ENABLED etc. handling")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
c9db1a103c
commit
2d8e102cd2
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ static void parse_config_file(const char *p)
|
|||
(q - p == 9 && !memcmp(p, "IS_MODULE(", 10)) ||
|
||||
(q - p == 3 && !memcmp(p, "VAL(", 4))) {
|
||||
p = q + 1;
|
||||
q = p;
|
||||
q = p;
|
||||
while (isalnum(*q) || *q == '_')
|
||||
q++;
|
||||
r = q;
|
||||
|
|
Loading…
Reference in a new issue