kbuild: trivial - use tabs for code indent where possible
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Tue, 10 Jun 2014 10:08:13 +0000 (19:08 +0900)
committerChristian Lamparter <chunkeey@googlemail.com>
Thu, 1 Jan 2015 16:48:56 +0000 (17:48 +0100)
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
config/conf.c
config/menu.c
config/zconf.l
config/zconf.y

index e308f5bf09a546b85017eea5e551ddbc8ceecc7b..ceafacb0e98dc6103a94265583a63562922d97dc 100644 (file)
@@ -644,7 +644,7 @@ int main(int ac, char **av)
        if (input_mode == savedefconfig) {
                if (conf_write_defconfig(defconfig_file)) {
                        fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
-                               defconfig_file);
+                               defconfig_file);
                        return 1;
                }
        } else if (input_mode != listnewconfig) {
index 3ac2c9c6e280300275920d2ea1cadb0c7be66746..a26cc5d2a9b0217d9c3d52bf0dab21b7337e95d2 100644 (file)
@@ -258,8 +258,8 @@ static void sym_check_prop(struct symbol *sym)
                                    "config symbol '%s' uses select, but is "
                                    "not boolean or tristate", sym->name);
                        else if (sym2->type != S_UNKNOWN &&
-                                sym2->type != S_BOOLEAN &&
-                                sym2->type != S_TRISTATE)
+                                sym2->type != S_BOOLEAN &&
+                                sym2->type != S_TRISTATE)
                                prop_warn(prop,
                                    "'%s' has wrong type. 'select' only "
                                    "accept arguments of boolean and "
@@ -268,7 +268,7 @@ static void sym_check_prop(struct symbol *sym)
                case P_RANGE:
                        if (sym->type != S_INT && sym->type != S_HEX)
                                prop_warn(prop, "range is only allowed "
-                                               "for int or hex symbols");
+                                               "for int or hex symbols");
                        if (!menu_validate_number(sym, prop->expr->left.sym) ||
                            !menu_validate_number(sym, prop->expr->right.sym))
                                prop_warn(prop, "range is invalid");
index a0eec5ae617684b06f8f44c3ca7d2ac403ec37b8..54058e07a375e4796054b6e90f2b58638ca055ff 100644 (file)
@@ -27,8 +27,8 @@ static char *text;
 static int text_size, text_asize;
 
 struct buffer {
-        struct buffer *parent;
-        YY_BUFFER_STATE state;
+       struct buffer *parent;
+       YY_BUFFER_STATE state;
 };
 
 struct buffer *current_buf;
index 992fa5546f080bf4986df71e54fc45dd6dad7e50..bd2c500d8a7b4c27b7a27f26dfbe2cfad174383e 100644 (file)
@@ -510,7 +510,7 @@ void conf_parse(const char *name)
        for_all_symbols(i, sym) {
                if (sym_check_deps(sym))
                        zconfnerrs++;
-        }
+       }
        if (zconfnerrs)
                exit(1);
        sym_set_change_count(1);