X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Flinux%2Fconsole.h;h=721371382ae5ff1a55eace3ec867fc355b22c24a;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=3bdf2155e565ce1a1e4d2cdeb5b7bbfa03ff3de9;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/include/linux/console.h b/include/linux/console.h index 3bdf2155e..721371382 100644 --- a/include/linux/console.h +++ b/include/linux/console.h @@ -63,11 +63,9 @@ extern const struct consw vga_con; /* VGA text console */ extern const struct consw newport_con; /* SGI Newport console */ extern const struct consw prom_con; /* SPARC PROM console */ -int con_is_bound(const struct consw *csw); -int register_con_driver(const struct consw *csw, int first, int last); -int unregister_con_driver(const struct consw *csw); int take_over_console(const struct consw *sw, int first, int last, int deflt); void give_up_console(const struct consw *sw); + /* scroll */ #define SM_UP (1) #define SM_DOWN (2) @@ -89,7 +87,6 @@ void give_up_console(const struct consw *sw); #define CON_CONSDEV (2) /* Last on the command line */ #define CON_ENABLED (4) #define CON_BOOT (8) -#define CON_ANYTIME (16) /* Safe to call when cpu is offline */ struct console { @@ -120,10 +117,6 @@ extern void console_stop(struct console *); extern void console_start(struct console *); extern int is_console_locked(void); -/* Suspend and resume console messages over PM events */ -extern void suspend_console(void); -extern void resume_console(void); - /* Some debug stub to catch some of the obvious races in the VT code */ #if 1 #define WARN_CONSOLE_UNLOCKED() WARN_ON(!is_console_locked() && !oops_in_progress)