aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/console.h
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /include/linux/console.h
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'include/linux/console.h')
-rw-r--r--include/linux/console.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/include/linux/console.h b/include/linux/console.h
index dedb082fe50..7453cfd593c 100644
--- a/include/linux/console.h
+++ b/include/linux/console.h
@@ -83,14 +83,8 @@ void give_up_console(const struct consw *sw);
83int con_debug_enter(struct vc_data *vc); 83int con_debug_enter(struct vc_data *vc);
84int con_debug_leave(void); 84int con_debug_leave(void);
85#else 85#else
86static inline int con_debug_enter(struct vc_data *vc) 86#define con_debug_enter(vc) (0)
87{ 87#define con_debug_leave() (0)
88 return 0;
89}
90static inline int con_debug_leave(void)
91{
92 return 0;
93}
94#endif 88#endif
95 89
96/* scroll */ 90/* scroll */
@@ -158,7 +152,7 @@ extern int braille_register_console(struct console *, int index,
158 char *console_options, char *braille_options); 152 char *console_options, char *braille_options);
159extern int braille_unregister_console(struct console *); 153extern int braille_unregister_console(struct console *);
160extern void console_sysfs_notify(void); 154extern void console_sysfs_notify(void);
161extern bool console_suspend_enabled; 155extern int console_suspend_enabled;
162 156
163/* Suspend and resume console messages over PM events */ 157/* Suspend and resume console messages over PM events */
164extern void suspend_console(void); 158extern void suspend_console(void);