summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2020-07-21 14:38:51 -0600
committerTom Rini <trini@konsulko.com>2020-08-04 23:30:02 -0400
commit2d8e102cd2fbf639447b52f3cdfb748d9b667556 (patch)
treedb1d08611f39a0a0d8899c0f003f3e861a0641b0 /scripts
parentc9db1a103cfc6ee4edb75820035a53368ceb01a3 (diff)
downloadu-boot-2d8e102cd2fbf639447b52f3cdfb748d9b667556.tar.gz
u-boot-2d8e102cd2fbf639447b52f3cdfb748d9b667556.tar.xz
u-boot-2d8e102cd2fbf639447b52f3cdfb748d9b667556.zip
fixdep: fix coding style in previous fix
Remove a double space introduced by my previous fixdep fix. Fixes: 76ae74d348a0 ("fixdep: fix CONFIG_IS_ENABLED etc. handling") Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/basic/fixdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c
index 958668df55..6d59cf8c07 100644
--- a/scripts/basic/fixdep.c
+++ b/scripts/basic/fixdep.c
@@ -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;