diff options
author | Anatolij Gustschin <agust@denx.de> | 2010-04-24 19:27:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-04-24 21:34:07 +0200 |
commit | fbb0030e3894119c089256f16626edd166c7629c (patch) | |
tree | 03fa427e4192ac88b607a5ba629f408d1fdff40f /drivers/serial/serial_pxa.c | |
parent | 6e5fb4eec3702a13770769a5a48a9423aa68ee9c (diff) | |
download | u-boot-imx-fbb0030e3894119c089256f16626edd166c7629c.zip u-boot-imx-fbb0030e3894119c089256f16626edd166c7629c.tar.gz u-boot-imx-fbb0030e3894119c089256f16626edd166c7629c.tar.bz2 |
serial: struct serial_device: add uninit() entry for drivers
Subsequent patch extends mpc512x serial driver to support
multiple PSC ports. The driver will provide an uninit()
function to stop the serial controller and to disable the
controller's clock. Adding uninit() entry to struct serial_device
allows disabling the serial controller after usage of
a stdio serial device.
This patch adds uninit() entry to the struct serial_device
and fixes initialization of this structure in the code
accordingly.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'drivers/serial/serial_pxa.c')
-rw-r--r-- | drivers/serial/serial_pxa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/serial/serial_pxa.c b/drivers/serial/serial_pxa.c index 9ba457e..b74e439 100644 --- a/drivers/serial/serial_pxa.c +++ b/drivers/serial/serial_pxa.c @@ -266,6 +266,7 @@ struct serial_device serial_ffuart_device = "serial_ffuart", "PXA", ffuart_init, + NULL, ffuart_setbrg, ffuart_getc, ffuart_tstc, @@ -310,6 +311,7 @@ struct serial_device serial_btuart_device = "serial_btuart", "PXA", btuart_init, + NULL, btuart_setbrg, btuart_getc, btuart_tstc, @@ -354,6 +356,7 @@ struct serial_device serial_stuart_device = "serial_stuart", "PXA", stuart_init, + NULL, stuart_setbrg, stuart_getc, stuart_tstc, |