blob: 31aaa087e5bf81f66419512c2ac74c9712d4506f (
plain)
1
2
3
4
5
6
7
8
|
#ifndef _LINUX_CONSOLE_H_
#define _LINUX_CONSOLE_H_
#define console_lock() do {} while (0)
#define console_trylock() true
#define console_unlock() do {} while (0)
#endif /* _LINUX_CONSOLE_H */
|