diff options
author | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-12-06 12:32:15 -0500 |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-12-06 12:32:15 -0500 |
commit | 721fdf34167580ff98263c74cead8871d76936e6 (patch) | |
tree | e3ab5c95cea22135d5205a8f2438a79222cd6ff2 /include/asm-parisc | |
parent | ac6aecbf0541ca277e6492fdf7c91e46e1fc4171 (diff) |
[PARISC] print more than one character at a time for pdc console
There's really no reason not to print more than one character at a
time to the PDC console... Booting is measurably speedier, and now I don't
have to watch individual characters get drawn.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'include/asm-parisc')
-rw-r--r-- | include/asm-parisc/pdc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asm-parisc/pdc.h b/include/asm-parisc/pdc.h index 5e0c3ca5450b..deda8c311373 100644 --- a/include/asm-parisc/pdc.h +++ b/include/asm-parisc/pdc.h | |||
@@ -645,8 +645,7 @@ int pdc_soft_power_button(int sw_control); | |||
645 | void pdc_io_reset(void); | 645 | void pdc_io_reset(void); |
646 | void pdc_io_reset_devices(void); | 646 | void pdc_io_reset_devices(void); |
647 | int pdc_iodc_getc(void); | 647 | int pdc_iodc_getc(void); |
648 | void pdc_iodc_putc(unsigned char c); | 648 | int pdc_iodc_print(unsigned char *str, unsigned count); |
649 | void pdc_iodc_outc(unsigned char c); | ||
650 | void pdc_printf(const char *fmt, ...); | 649 | void pdc_printf(const char *fmt, ...); |
651 | 650 | ||
652 | void pdc_emergency_unlock(void); | 651 | void pdc_emergency_unlock(void); |