diff options
| author | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-04 18:18:21 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-04 18:18:21 -0800 |
| commit | 48818fe15745470d76a3768eef93569ded9c9fa5 (patch) | |
| tree | 9dbd2eb11cd1eb252631546fd677ba52ec57723b /include/linux/console.h | |
| parent | 93bc467d274f39059e2d15f93d53e89e1a00aae6 (diff) | |
| parent | 70faa195d4e1b6cddcc5c88987be1273eb8cab24 (diff) | |
Merge bk://linux-dj.bkbits.net/agpgart
into home.osdl.org:/home/torvalds/v2.5/linux
Diffstat (limited to 'include/linux/console.h')
| -rw-r--r-- | include/linux/console.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/linux/console.h b/include/linux/console.h index cdff9de7ee71..6db0056fb4c9 100644 --- a/include/linux/console.h +++ b/include/linux/console.h @@ -71,18 +71,6 @@ void give_up_console(const struct consw *sw); #define CM_MOVE (3) /* - * Array of consoles built from command line options (console=) - */ -struct console_cmdline -{ - char name[8]; /* Name of the driver */ - int index; /* Minor dev. to use */ - char *options; /* Options for the driver */ -}; -#define MAX_CMDLINECONSOLES 8 -extern struct console_cmdline console_list[MAX_CMDLINECONSOLES]; - -/* * The interface for a console, or any other device that * wants to capture console messages (printer driver?) */ @@ -106,6 +94,7 @@ struct console struct console *next; }; +extern int add_preferred_console(char *name, int idx, char *options); extern void register_console(struct console *); extern int unregister_console(struct console *); extern struct console *console_drivers; |
