[SERIAL] Convert fifosize to an unsigned int
[deliverable/linux.git] / drivers / serial / mpc52xx_uart.c
index 6459edc7f5c5e09d23bef78c590abfe677a5a813..1b2cdc91c228deeb2918bdd053bd591b2b54ff20 100644 (file)
@@ -728,8 +728,7 @@ mpc52xx_uart_probe(struct platform_device *dev)
 
        spin_lock_init(&port->lock);
        port->uartclk   = __res.bi_ipbfreq / 2; /* Look at CTLR doc */
-       port->fifosize  = 255; /* Should be 512 ! But it can't be */
-                              /* stored in a unsigned char       */
+       port->fifosize  = 512;
        port->iotype    = UPIO_MEM;
        port->flags     = UPF_BOOT_AUTOCONF |
                          ( uart_console(port) ? 0 : UPF_IOREMAP );
This page took 0.023827 seconds and 5 git commands to generate.