]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/serial/serial_s5p.c
SAMSUNG: serial: remove compiler warnings
[karo-tx-uboot.git] / drivers / serial / serial_s5p.c
index 9747db37219313f97b287bb8b945dc9226f0cbd5..e0d4e8004dd01886b940933ea8551788fdef6f28 100644 (file)
@@ -133,7 +133,7 @@ int serial_getc_dev(const int dev_index)
                        return 0;
        }
 
-       return (int)(readl(&uart->urxh) & 0xff);
+       return (int)(readb(&uart->urxh) & 0xff);
 }
 
 /*
@@ -149,7 +149,7 @@ void serial_putc_dev(const char c, const int dev_index)
                        return;
        }
 
-       writel(c, &uart->utxh);
+       writeb(c, &uart->utxh);
 
        /* If \n, also do \r */
        if (c == '\n')