diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-03 16:28:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-03 16:28:14 -0400 |
commit | d6748066ad0e8b2514545998f8367ebb3906f299 (patch) | |
tree | f7a9bfd764a8fb781aeda0ef2249afbab42dddf7 /arch/mips/mm/c-octeon.c | |
parent | f04c045f8ce69c22bda9d99eb927276b776135fc (diff) | |
parent | 3ba1e543ab4b02640d396098f2f6a199560d5f2d (diff) |
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
* 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (37 commits)
MIPS: O32: Provide definition of registers ta0 .. ta3.
MIPS: perf: Add Octeon support for hardware perf.
MIPS: perf: Add support for 64-bit perf counters.
MIPS: perf: Reorganize contents of perf support files.
MIPS: perf: Cleanup formatting in arch/mips/kernel/perf_event.c
MIPS: Add accessor macros for 64-bit performance counter registers.
MIPS: Add probes for more Octeon II CPUs.
MIPS: Add more CPU identifiers for Octeon II CPUs.
MIPS: XLR, XLS: Add comment for smp setup
MIPS: JZ4740: GPIO: Check correct IRQ in demux handler
MIPS: JZ4740: GPIO: Simplify IRQ demuxer
MIPS: JZ4740: Use generic irq chip
MIPS: Alchemy: remove all CONFIG_SOC_AU1??? defines
MIPS: Alchemy: kill au1xxx.h header
MIPS: Alchemy: clean DMA code of CONFIG_SOC_AU1??? defines
MIPS, IDE: Alchem, au1xxx-ide: Remove pb1200/db1200 header dep
MIPS: Alchemy: Redo PCI as platform driver
MIPS: Alchemy: more base address cleanup
MIPS: Alchemy: rewrite USB platform setup.
MIPS: Alchemy: abstract USB block control register access
...
Fix up trivial conflicts in:
arch/mips/alchemy/devboards/db1x00/platform.c
drivers/ide/Kconfig
drivers/mmc/host/au1xmmc.c
drivers/video/Kconfig
sound/mips/Kconfig
Diffstat (limited to 'arch/mips/mm/c-octeon.c')
-rw-r--r-- | arch/mips/mm/c-octeon.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/mm/c-octeon.c b/arch/mips/mm/c-octeon.c index 16c4d256b76f..daa81f7284ac 100644 --- a/arch/mips/mm/c-octeon.c +++ b/arch/mips/mm/c-octeon.c | |||
@@ -169,6 +169,10 @@ static void octeon_flush_cache_page(struct vm_area_struct *vma, | |||
169 | octeon_flush_icache_all_cores(vma); | 169 | octeon_flush_icache_all_cores(vma); |
170 | } | 170 | } |
171 | 171 | ||
172 | static void octeon_flush_kernel_vmap_range(unsigned long vaddr, int size) | ||
173 | { | ||
174 | BUG(); | ||
175 | } | ||
172 | 176 | ||
173 | /** | 177 | /** |
174 | * Probe Octeon's caches | 178 | * Probe Octeon's caches |
@@ -273,6 +277,8 @@ void __cpuinit octeon_cache_init(void) | |||
273 | flush_icache_range = octeon_flush_icache_range; | 277 | flush_icache_range = octeon_flush_icache_range; |
274 | local_flush_icache_range = local_octeon_flush_icache_range; | 278 | local_flush_icache_range = local_octeon_flush_icache_range; |
275 | 279 | ||
280 | __flush_kernel_vmap_range = octeon_flush_kernel_vmap_range; | ||
281 | |||
276 | build_clear_page(); | 282 | build_clear_page(); |
277 | build_copy_page(); | 283 | build_copy_page(); |
278 | } | 284 | } |