浏览代码

[POWERPC] CPM_UART: Use inline function form of eieio

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Kumar Gala 18 年之前
父节点
当前提交
90faf4fa79
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/serial/cpm_uart/cpm_uart_core.c

+ 1 - 1
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;