aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-10-03 20:59:24 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-10-03 20:59:24 -0400
commit5419e783829127dba712be769bce8c6a1ec0057e (patch)
tree2d0615419e48377baa126b58dc2f08ebfe68adb6 /arch/m68k/kernel
parent8e4ef6386703835f91898334b72e48649646ec00 (diff)
parent6736e65effc3a5a866cf8a03cda9ad277b712d3f (diff)
Merge tag 'm68k-for-v4.9-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k updates from Geert Uytterhoeven: - cleanups - defconfig updates - GPG fingerprint update * tag 'm68k-for-v4.9-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k: m68k: Migrate exception table users off module.h and onto extable.h CREDITS: Update fingerprint for Geert Uytterhoeven m68k: Use IS_ENABLED() instead of checking for built-in or module m68k/defconfig: Update defconfigs for v4.8-rc1
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r--arch/m68k/kernel/setup_mm.c2
-rw-r--r--arch/m68k/kernel/signal.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c
index 5b8ec4d5f8e8..50633c38f1e2 100644
--- a/arch/m68k/kernel/setup_mm.c
+++ b/arch/m68k/kernel/setup_mm.c
@@ -105,7 +105,7 @@ EXPORT_SYMBOL(mach_heartbeat);
105#ifdef CONFIG_M68K_L2_CACHE 105#ifdef CONFIG_M68K_L2_CACHE
106void (*mach_l2_flush) (int); 106void (*mach_l2_flush) (int);
107#endif 107#endif
108#if defined(CONFIG_INPUT_M68K_BEEP) || defined(CONFIG_INPUT_M68K_BEEP_MODULE) 108#if IS_ENABLED(CONFIG_INPUT_M68K_BEEP)
109void (*mach_beep)(unsigned int, unsigned int); 109void (*mach_beep)(unsigned int, unsigned int);
110EXPORT_SYMBOL(mach_beep); 110EXPORT_SYMBOL(mach_beep);
111#endif 111#endif
diff --git a/arch/m68k/kernel/signal.c b/arch/m68k/kernel/signal.c
index 9202f82dfce6..58507edbdf1d 100644
--- a/arch/m68k/kernel/signal.c
+++ b/arch/m68k/kernel/signal.c
@@ -42,7 +42,7 @@
42#include <linux/personality.h> 42#include <linux/personality.h>
43#include <linux/tty.h> 43#include <linux/tty.h>
44#include <linux/binfmts.h> 44#include <linux/binfmts.h>
45#include <linux/module.h> 45#include <linux/extable.h>
46#include <linux/tracehook.h> 46#include <linux/tracehook.h>
47 47
48#include <asm/setup.h> 48#include <asm/setup.h>