diff options
author | Helge Deller <deller@gmx.de> | 2021-11-15 19:34:50 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2021-11-18 11:01:36 +0300 |
commit | 4d7804d201f2588469798faaab7b54caeb67410b (patch) | |
tree | 441264735030708e7838d45baafd269ac8cdd20a /arch/parisc/include/asm | |
parent | bec05f33ebc1006899c6d3e59a00c58881fe7626 (diff) | |
download | linux-4d7804d201f2588469798faaab7b54caeb67410b.tar.xz |
parisc: Include stringify.h to avoid build error in crypto/api.c
Include stringify.h to avoid this build error:
arch/parisc/include/asm/jump_label.h: error: expected ':' before '__stringify'
arch/parisc/include/asm/jump_label.h: error: label 'l_yes' defined but not used [-Werror=unused-label]
Signed-off-by: Helge Deller <deller@gmx.de>
Reported-by: kernel test robot <lkp@intel.com>
Diffstat (limited to 'arch/parisc/include/asm')
-rw-r--r-- | arch/parisc/include/asm/jump_label.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/parisc/include/asm/jump_label.h b/arch/parisc/include/asm/jump_label.h index 7efb1aa2f7f8..af2a598bc0f8 100644 --- a/arch/parisc/include/asm/jump_label.h +++ b/arch/parisc/include/asm/jump_label.h @@ -5,6 +5,7 @@ #ifndef __ASSEMBLY__ #include <linux/types.h> +#include <linux/stringify.h> #include <asm/assembly.h> #define JUMP_LABEL_NOP_SIZE 4 |