]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/pseries: Fix hvc_vio.c build due to recent changes
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 20 Jul 2011 08:01:48 +0000 (18:01 +1000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 20 Jul 2011 08:01:48 +0000 (18:01 +1000)
For some reason I didn't notice the failure in my test builds,
probably lacking caffeine or something...

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
drivers/tty/hvc/hvc_vio.c

index ae659a4596b066391bcb6215bedea718a453aa9c..130aace67f3103c2e8bb6209de58d6ee65c031a0 100644 (file)
@@ -461,7 +461,7 @@ void __init udbg_init_debug_lpar(void)
        hvterm_privs[0] = &hvterm_priv0;
        hvterm_priv0.termno = 0;
        hvterm_priv0.proto = HV_PROTOCOL_RAW;
-       spin_lock_init(&hvterm_priv0.buf_lock)
+       spin_lock_init(&hvterm_priv0.buf_lock);
        udbg_putc = udbg_hvc_putc;
        udbg_getc = udbg_hvc_getc;
        udbg_getc_poll = udbg_hvc_getc_poll;
@@ -474,7 +474,7 @@ void __init udbg_init_debug_lpar_hvsi(void)
        hvterm_privs[0] = &hvterm_priv0;
        hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
        hvterm_priv0.proto = HV_PROTOCOL_HVSI;
-       spin_lock_init(&hvterm_priv0.buf_lock)
+       spin_lock_init(&hvterm_priv0.buf_lock);
        udbg_putc = udbg_hvc_putc;
        udbg_getc = udbg_hvc_getc;
        udbg_getc_poll = udbg_hvc_getc_poll;