diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-02-15 02:15:32 +0000 |
commit | 86464aed71025541805e7b1515541aee89879e33 (patch) | |
tree | e01a457a4912a8553bc65524aa3125d51f29f810 /drivers/video/fbcon-iplan2p8.c | |
parent | 88f99939ecc6a95a79614574cb7d95ffccfc3466 (diff) |
Merge with Linux 2.2.1.
Diffstat (limited to 'drivers/video/fbcon-iplan2p8.c')
-rw-r--r-- | drivers/video/fbcon-iplan2p8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbcon-iplan2p8.c b/drivers/video/fbcon-iplan2p8.c index dbdd56ac8..c730eb39c 100644 --- a/drivers/video/fbcon-iplan2p8.c +++ b/drivers/video/fbcon-iplan2p8.c @@ -10,7 +10,6 @@ * more details. */ -#include <linux/config.h> #include <linux/module.h> #include <linux/tty.h> #include <linux/console.h> @@ -18,6 +17,7 @@ #include <linux/fb.h> #include <asm/byteorder.h> +#include <asm/setup.h> #include <video/fbcon.h> #include <video/fbcon-iplan2p8.h> @@ -40,7 +40,7 @@ /* Perform the m68k movepl operation extended to 64 bits. */ static inline void movepl2(u8 *d, u32 val1, u32 val2) { -#if defined __mc68000__ && !defined CONFIG_OPTIMIZE_060 +#if defined __mc68000__ && !defined CPU_M68060_ONLY asm volatile ("movepl %1,%0@(0); movepl %2,%0@(8)" : : "a" (d), "d" (val1), "d" (val2)); #else |