-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an include file for the console_cmdline struct so that the braille console driver can be separated. Signed-off-by: Joe Perches <joe@perches.com> Cc: Samuel Thibault <samuel.thibault@ens-lyon.org> Cc: Ming Lei <ming.lei@canonical.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
- Loading branch information
Joe Perches
authored and
Linus Torvalds
committed
Jul 31, 2013
1 parent
b9ee979
commit d197c43
Showing
2 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _CONSOLE_CMDLINE_H | ||
#define _CONSOLE_CMDLINE_H | ||
|
||
struct console_cmdline | ||
{ | ||
char name[8]; /* Name of the driver */ | ||
int index; /* Minor dev. to use */ | ||
char *options; /* Options for the driver */ | ||
#ifdef CONFIG_A11Y_BRAILLE_CONSOLE | ||
char *brl_options; /* Options for braille driver */ | ||
#endif | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters