Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / arch / i386 / lib / printk_init.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; version 2 of
7  * the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
17  * MA 02110-1301 USA
18  */
19
20 #include <console/console.h>
21 #include <console/vtxprintf.h>
22 #include <uart8250.h>
23
24 static void console_tx_byte(unsigned char byte)
25 {
26         if (byte == '\n')
27                 uart8250_tx_byte(CONFIG_TTYS0_BASE, '\r');
28
29         uart8250_tx_byte(CONFIG_TTYS0_BASE, byte);
30 }
31
32 int do_printk(int msg_level, const char *fmt, ...)
33 {
34         va_list args;
35         int i;
36
37         if (msg_level > console_loglevel) {
38                 return 0;
39         }
40
41         va_start(args, fmt);
42         i = vtxprintf(console_tx_byte, fmt, args);
43         va_end(args);
44
45         return i;
46 }