]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fixdep: fix coding style in previous fix
authorStephen Warren <swarren@nvidia.com>
Tue, 21 Jul 2020 20:38:51 +0000 (14:38 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 5 Aug 2020 03:30:02 +0000 (23:30 -0400)
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>
scripts/basic/fixdep.c

index 958668df554617c1f7de6340e5af6921283e7fbd..6d59cf8c07ee31e1afdbf76f79e9661b91cad04a 100644 (file)
@@ -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;