summaryrefslogtreecommitdiffstats
path: root/drivers/serial/serial_imx.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2013-09-20 05:31:29 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-09-21 09:59:16 +0200
commite62d4255172540805a77fee1c58382103f43bb2f (patch)
tree0ddacc55738ce750d1164501cfd30ed1b6ab7120 /drivers/serial/serial_imx.c
parentfe4117357f8f304a08b957eded8ede9db8dafdcf (diff)
downloadbarebox-e62d4255172540805a77fee1c58382103f43bb2f.tar.gz
barebox-e62d4255172540805a77fee1c58382103f43bb2f.tar.xz
console: drop f_caps and check the function pointer getc/putc instead
None of the driver make the difference between STDOUT and STDERR. So we just need to check if putc or getc are filled in the console_device save 32 bytes on versatilepb Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/serial/serial_imx.c')
-rw-r--r--drivers/serial/serial_imx.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/serial/serial_imx.c b/drivers/serial/serial_imx.c
index 8553c2e6af..e99dde81d7 100644
--- a/drivers/serial/serial_imx.c
+++ b/drivers/serial/serial_imx.c
@@ -330,7 +330,6 @@ static int imx_serial_probe(struct device_d *dev)
priv->regs = dev_request_mem_region(dev, 0);
cdev->dev = dev;
- cdev->f_caps = CONSOLE_STDIN | CONSOLE_STDOUT | CONSOLE_STDERR;
cdev->tstc = imx_serial_tstc;
cdev->putc = imx_serial_putc;
cdev->getc = imx_serial_getc;