mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-01 13:22:53 +07:00
MIPS: Highmem: Fix build error if CONFIG_DEBUG_HIGHMEM is disabled
CC arch/mips/mm/highmem.o /home/ralf/src/linux/linux-mips/arch/mips/mm/highmem.c: In function ‘__kunmap_atomic’: /home/ralf/src/linux/linux-mips/arch/mips/mm/highmem.c:70:6: error: variable ‘type’ set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors This warning exists in gcc 4.6.0 and newer. Kernels 2.6.40 and newer use -Wunused-but-set-variable to suppress it. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
a16dad7763
commit
b99fbc10df
@ -1,3 +1,4 @@
|
|||||||
|
#include <linux/compiler.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/highmem.h>
|
#include <linux/highmem.h>
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
@ -67,7 +68,7 @@ EXPORT_SYMBOL(kmap_atomic);
|
|||||||
void __kunmap_atomic(void *kvaddr)
|
void __kunmap_atomic(void *kvaddr)
|
||||||
{
|
{
|
||||||
unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
|
unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
|
||||||
int type;
|
int type __maybe_unused;
|
||||||
|
|
||||||
if (vaddr < FIXADDR_START) { // FIXME
|
if (vaddr < FIXADDR_START) { // FIXME
|
||||||
pagefault_enable();
|
pagefault_enable();
|
||||||
|
Loading…
Reference in New Issue
Block a user