debug.c (5c34202b8bf942da411b6599668a76b07449bbfd) | debug.c (a3b2004a2671455ee7aef1d9aee5a24381999ddb) |
---|---|
1/* 2 * linux/arch/m68k/atari/debug.c 3 * 4 * Atari debugging and serial console stuff 5 * 6 * Assembled of parts of former atari/config.c 97-12-18 by Roman Hodek 7 * 8 * This file is subject to the terms and conditions of the GNU General Public 9 * License. See the file COPYING in the main directory of this archive 10 * for more details. 11 */ 12 13#include <linux/types.h> 14#include <linux/tty.h> 15#include <linux/console.h> 16#include <linux/init.h> 17#include <linux/delay.h> | 1/* 2 * linux/arch/m68k/atari/debug.c 3 * 4 * Atari debugging and serial console stuff 5 * 6 * Assembled of parts of former atari/config.c 97-12-18 by Roman Hodek 7 * 8 * This file is subject to the terms and conditions of the GNU General Public 9 * License. See the file COPYING in the main directory of this archive 10 * for more details. 11 */ 12 13#include <linux/types.h> 14#include <linux/tty.h> 15#include <linux/console.h> 16#include <linux/init.h> 17#include <linux/delay.h> |
18#include <linux/module.h> |
|
18 19#include <asm/atarihw.h> 20#include <asm/atariints.h> 21 22/* Flag that Modem1 port is already initialized and used */ 23int atari_MFP_init_done; | 19 20#include <asm/atarihw.h> 21#include <asm/atariints.h> 22 23/* Flag that Modem1 port is already initialized and used */ 24int atari_MFP_init_done; |
25EXPORT_SYMBOL(atari_MFP_init_done); 26 |
|
24/* Flag that Modem1 port is already initialized and used */ 25int atari_SCC_init_done; | 27/* Flag that Modem1 port is already initialized and used */ 28int atari_SCC_init_done; |
29EXPORT_SYMBOL(atari_SCC_init_done); 30 |
|
26/* Can be set somewhere, if a SCC master reset has already be done and should 27 * not be repeated; used by kgdb */ 28int atari_SCC_reset_done; | 31/* Can be set somewhere, if a SCC master reset has already be done and should 32 * not be repeated; used by kgdb */ 33int atari_SCC_reset_done; |
34EXPORT_SYMBOL(atari_SCC_reset_done); |
|
29 30static struct console atari_console_driver = { 31 .name = "debug", 32 .flags = CON_PRINTBUFFER, 33 .index = -1, 34}; 35 36 --- 308 unchanged lines hidden --- | 35 36static struct console atari_console_driver = { 37 .name = "debug", 38 .flags = CON_PRINTBUFFER, 39 .index = -1, 40}; 41 42 --- 308 unchanged lines hidden --- |