diff options
author | Barry Song <Baohua.Song@csr.com> | 2013-02-04 07:46:57 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-02-06 09:33:07 +0000 |
commit | 4e79a62d84b9a3b84c609d73382415c71d911a4c (patch) | |
tree | 0138ec6bc130f1a734facd2da366dfee8c238a1b /arch/arm/include/asm/outercache.h | |
parent | 20e260b6f4f717c100620122f626a2c06a4cfd72 (diff) | |
download | blackbird-op-linux-4e79a62d84b9a3b84c609d73382415c71d911a4c.tar.gz blackbird-op-linux-4e79a62d84b9a3b84c609d73382415c71d911a4c.zip |
ARM: 7639/1: cache-l2x0: add missed dummy outer_resume entry
Commit 91c2ebb90b1890a (ARM: 7114/1: cache-l2x0: add resume entry for l2
in secure mode) added resume entry for l2 in secure mode, but it missed
the dummy entry when CONFIG_CACHE_L2X0 is not set.
(Commit text edited by rmk.)
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/outercache.h')
-rw-r--r-- | arch/arm/include/asm/outercache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/outercache.h b/arch/arm/include/asm/outercache.h index 53426c66352a..12f71a190422 100644 --- a/arch/arm/include/asm/outercache.h +++ b/arch/arm/include/asm/outercache.h @@ -92,6 +92,7 @@ static inline void outer_flush_range(phys_addr_t start, phys_addr_t end) static inline void outer_flush_all(void) { } static inline void outer_inv_all(void) { } static inline void outer_disable(void) { } +static inline void outer_resume(void) { } #endif |