diff options
author | Mark Salter <msalter@redhat.com> | 2013-11-11 08:28:33 -0500 |
---|---|---|
committer | Mark Salter <msalter@redhat.com> | 2014-03-04 17:21:58 -0500 |
commit | ae72758f1dd93bd367dc7719702f24a9bfb3bad9 (patch) | |
tree | ec2da4927b0aa0b6963e51ec855b8dfcc3b1d38e /arch | |
parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) | |
download | op-kernel-dev-ae72758f1dd93bd367dc7719702f24a9bfb3bad9.zip op-kernel-dev-ae72758f1dd93bd367dc7719702f24a9bfb3bad9.tar.gz |
c6x: fix build failure caused by cache.h
A patch to linux/irqflags.h uncovered a problem with c6x asm/cache.h
which causes a build failure:
/arch/c6x/include/asm/cache.h:63:20: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘c6x_cache_init’
extern void __init c6x_cache_init(void);
The asm/cache.h was relying on linux/irqflags.h to pull in linux/init.h
but the recent patch changed that. The c6x header should have included
linux/init.h all along.
Signed-off-by: Mark Salter <msalter@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/c6x/include/asm/cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/c6x/include/asm/cache.h b/arch/c6x/include/asm/cache.h index 09c5a0f..86648c0 100644 --- a/arch/c6x/include/asm/cache.h +++ b/arch/c6x/include/asm/cache.h @@ -12,6 +12,7 @@ #define _ASM_C6X_CACHE_H #include <linux/irqflags.h> +#include <linux/init.h> /* * Cache line size |