S3C2410: add error print if we cannot add attribute
[linux-2.6/libata-dev.git] / arch / mips / dec / promcon.c
blob9f0972f5a7023f8ff416cb44700d1c5872026650
1 /*
2 * Wrap-around code for a console using the
3 * DECstation PROM io-routines.
5 * Copyright (c) 1998 Harald Koerfgen
6 */
8 #include <linux/tty.h>
9 #include <linux/ptrace.h>
10 #include <linux/init.h>
11 #include <linux/console.h>
12 #include <linux/fs.h>
14 #include <asm/dec/prom.h>
16 static void prom_console_write(struct console *co, const char *s,
17 unsigned count)
19 unsigned i;
22 * Now, do each character
24 for (i = 0; i < count; i++) {
25 if (*s == 10)
26 prom_printf("%c", 13);
27 prom_printf("%c", *s++);
31 static int __init prom_console_setup(struct console *co, char *options)
33 return 0;
36 static struct console sercons =
38 .name = "ttyS",
39 .write = prom_console_write,
40 .setup = prom_console_setup,
41 .flags = CON_PRINTBUFFER,
42 .index = -1,
46 * Register console.
49 static int __init prom_console_init(void)
51 register_console(&sercons);
53 return 0;
55 console_initcall(prom_console_init);