From: Kumar Gala Date: Tue, 10 Jul 2007 04:51:06 +0000 (-0500) Subject: [POWERPC] CPM_UART: Use inline function form of eieio X-Git-Tag: v2.6.23-rc1~767^2^2~37 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=90faf4fa7964a08d36160f7bc3c252866ad1275a;p=linux-2.6-omap-h63xx.git [POWERPC] CPM_UART: Use inline function form of eieio Signed-off-by: Kumar Gala --- diff --git a/drivers/serial/cpm_uart/cpm_uart_core.c b/drivers/serial/cpm_uart/cpm_uart_core.c index b63ff8dd730..cefde58dbad 100644 --- a/drivers/serial/cpm_uart/cpm_uart_core.c +++ b/drivers/serial/cpm_uart/cpm_uart_core.c @@ -678,7 +678,7 @@ static int cpm_uart_tx_pump(struct uart_port *port) } bdp->cbd_datlen = count; bdp->cbd_sc |= BD_SC_READY; - __asm__("eieio"); + eieio(); /* Get next BD. */ if (bdp->cbd_sc & BD_SC_WRAP) bdp = pinfo->tx_bd_base;