blob: 65419bf32441be996b689a28790a1a610dcc8d37 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/mips/dec/prom/console.c
3 *
4 * DECstation PROM-based early console support.
5 *
6 * Copyright (C) 2004 Maciej W. Rozycki
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13#include <linux/console.h>
14#include <linux/init.h>
15#include <linux/kernel.h>
16
17#include <asm/dec/prom.h>
18
Ralf Baechle36a88532007-03-01 11:56:43 +000019void prom_putchar(char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
Ralf Baechle36a88532007-03-01 11:56:43 +000021 char s[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ralf Baechle36a88532007-03-01 11:56:43 +000023 s[0] = c;
24 s[1] = '\0';
25
26 prom_printf( s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027}