1*b0b8a8ceSFrançois Tigeot /*
2*b0b8a8ceSFrançois Tigeot * Copyright (c) 2017 François Tigeot
3*b0b8a8ceSFrançois Tigeot * All rights reserved.
4*b0b8a8ceSFrançois Tigeot *
5*b0b8a8ceSFrançois Tigeot * Redistribution and use in source and binary forms, with or without
6*b0b8a8ceSFrançois Tigeot * modification, are permitted provided that the following conditions
7*b0b8a8ceSFrançois Tigeot * are met:
8*b0b8a8ceSFrançois Tigeot * 1. Redistributions of source code must retain the above copyright
9*b0b8a8ceSFrançois Tigeot * notice unmodified, this list of conditions, and the following
10*b0b8a8ceSFrançois Tigeot * disclaimer.
11*b0b8a8ceSFrançois Tigeot * 2. Redistributions in binary form must reproduce the above copyright
12*b0b8a8ceSFrançois Tigeot * notice, this list of conditions and the following disclaimer in the
13*b0b8a8ceSFrançois Tigeot * documentation and/or other materials provided with the distribution.
14*b0b8a8ceSFrançois Tigeot *
15*b0b8a8ceSFrançois Tigeot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16*b0b8a8ceSFrançois Tigeot * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17*b0b8a8ceSFrançois Tigeot * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18*b0b8a8ceSFrançois Tigeot * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19*b0b8a8ceSFrançois Tigeot * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20*b0b8a8ceSFrançois Tigeot * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21*b0b8a8ceSFrançois Tigeot * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22*b0b8a8ceSFrançois Tigeot * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23*b0b8a8ceSFrançois Tigeot * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24*b0b8a8ceSFrançois Tigeot * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*b0b8a8ceSFrançois Tigeot */
26*b0b8a8ceSFrançois Tigeot #ifndef _LINUX_CONSOLE_H_
27*b0b8a8ceSFrançois Tigeot #define _LINUX_CONSOLE_H_
28*b0b8a8ceSFrançois Tigeot
29*b0b8a8ceSFrançois Tigeot #include <linux/types.h>
30*b0b8a8ceSFrançois Tigeot
31*b0b8a8ceSFrançois Tigeot static inline bool
vgacon_text_force(void)32*b0b8a8ceSFrançois Tigeot vgacon_text_force(void)
33*b0b8a8ceSFrançois Tigeot {
34*b0b8a8ceSFrançois Tigeot return false;
35*b0b8a8ceSFrançois Tigeot }
36*b0b8a8ceSFrançois Tigeot
37*b0b8a8ceSFrançois Tigeot #endif /* _LINUX_CONSOLE_H_ */
38