]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - kernel/kallsyms.c
mei: exclude device from suspend direct complete optimization
[karo-tx-linux.git] / kernel / kallsyms.c
index 6a3b249a2ae107b04a044f8b4760f3b55591cb43..127e7cfafa55207a3fb45e5dc158c7885b949b49 100644 (file)
 
 #include <asm/sections.h>
 
-#ifdef CONFIG_KALLSYMS_ALL
-#define all_var 1
-#else
-#define all_var 0
-#endif
-
 /*
  * These will be re-linked against their real values
  * during the second link stage.
@@ -82,7 +76,7 @@ static inline int is_kernel(unsigned long addr)
 
 static int is_ksym_addr(unsigned long addr)
 {
-       if (all_var)
+       if (IS_ENABLED(CONFIG_KALLSYMS_ALL))
                return is_kernel(addr);
 
        return is_kernel_text(addr) || is_kernel_inittext(addr);
@@ -280,7 +274,7 @@ static unsigned long get_symbol_pos(unsigned long addr,
        if (!symbol_end) {
                if (is_kernel_inittext(addr))
                        symbol_end = (unsigned long)_einittext;
-               else if (all_var)
+               else if (IS_ENABLED(CONFIG_KALLSYMS_ALL))
                        symbol_end = (unsigned long)_end;
                else
                        symbol_end = (unsigned long)_etext;