aboutsummaryrefslogtreecommitdiffstats
path: root/xenolinux-2.4.25-sparse/arch
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-03-12 13:36:55 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-03-12 13:36:55 +0000
commit2dcac0c2263ee391c2e8cb700353a167181a51b9 (patch)
tree51906ec70d50a467656ccc95171d9b47f549aad7 /xenolinux-2.4.25-sparse/arch
parent4bd93b4b943cd0737de2a6dc987e56fe2339d692 (diff)
downloadxen-2dcac0c2263ee391c2e8cb700353a167181a51b9.tar.gz
xen-2dcac0c2263ee391c2e8cb700353a167181a51b9.tar.bz2
xen-2dcac0c2263ee391c2e8cb700353a167181a51b9.zip
bitkeeper revision 1.781.1.1 (4051bcf71wSVHdhOOqsU19dm2FSXDQ)
physdev.c, xc_physdev.c: new file Many files: First half of Rolf's IO-virtualisation patch.
Diffstat (limited to 'xenolinux-2.4.25-sparse/arch')
-rw-r--r--xenolinux-2.4.25-sparse/arch/xeno/drivers/console/console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xenolinux-2.4.25-sparse/arch/xeno/drivers/console/console.c b/xenolinux-2.4.25-sparse/arch/xeno/drivers/console/console.c
index f0c475200d..2e18d72854 100644
--- a/xenolinux-2.4.25-sparse/arch/xeno/drivers/console/console.c
+++ b/xenolinux-2.4.25-sparse/arch/xeno/drivers/console/console.c
@@ -79,7 +79,7 @@ static void priv_conwrite(const char *s, unsigned int count)
while ( count > 0 )
{
- if ( (rc = HYPERVISOR_serial_io(SERIALIO_write, count, s)) > 0 )
+ if ( (rc = HYPERVISOR_console_io(CONSOLEIO_write, count, s)) > 0 )
{
count -= rc;
s += rc;
@@ -174,7 +174,7 @@ static void __do_console_io(void)
if ( start_info.flags & SIF_INITDOMAIN )
{
/* Receive work. */
- while ( (len = HYPERVISOR_serial_io(SERIALIO_read, 16, rbuf)) > 0 )
+ while ( (len = HYPERVISOR_console_io(CONSOLEIO_read, 16, rbuf)) > 0 )
for ( i = 0; i < len; i++ )
tty_insert_flip_char(xeno_console_tty, rbuf[i], 0);
if ( xeno_console_tty->flip.count != 0 )