kconfig: Remove dead code
authorMichal Marek <mmarek@suse.cz>
Tue, 24 Feb 2015 15:32:09 +0000 (16:32 +0100)
committerChristian Lamparter <chunkeey@googlemail.com>
Wed, 20 May 2015 12:09:20 +0000 (14:09 +0200)
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
config/expr.c
config/lkc.h
config/util.c

index d6626521f9b9ab9d166fcb9e916a6ea5bc8a7eba..4b4cf8e21314a27f66ba55904f63a1e4292a1e92 100644 (file)
@@ -978,9 +978,6 @@ tristate expr_calc_value(struct expr *e)
 
 int expr_compare_type(enum expr_type t1, enum expr_type t2)
 {
-#if 0
-       return 1;
-#else
        if (t1 == t2)
                return 0;
        switch (t1) {
@@ -1005,7 +1002,6 @@ int expr_compare_type(enum expr_type t1, enum expr_type t2)
        }
        printf("[%dgt%d?]", t1, t2);
        return 0;
-#endif
 }
 
 static inline struct expr *
index e418a30bbc40842e3ac7b6d54927eb1007d98d98..9f845eab56cb473863e68d05371361e53f598812 100644 (file)
@@ -135,7 +135,6 @@ struct gstr {
        int max_width;
 };
 struct gstr str_new(void);
-struct gstr str_assign(const char *s);
 void str_free(struct gstr *gs);
 void str_append(struct gstr *gs, const char *s);
 void str_printf(struct gstr *gs, const char *fmt, ...);
index 94f9c83e324f4a72b79b6fbf8ca6b3999d046702..0e76042473ccd3633aa0870da3cce23e0b1788c6 100644 (file)
@@ -88,16 +88,6 @@ struct gstr str_new(void)
        return gs;
 }
 
-/* Allocate and assign growable string */
-struct gstr str_assign(const char *s)
-{
-       struct gstr gs;
-       gs.s = strdup(s);
-       gs.len = strlen(s) + 1;
-       gs.max_width = 0;
-       return gs;
-}
-
 /* Free storage for growable string */
 void str_free(struct gstr *gs)
 {