diff options
| author | Nobuhiro Iwamatsu <[email protected]> | 2008-11-17 16:53:09 +0900 |
|---|---|---|
| committer | Nobuhiro Iwamatsu <[email protected]> | 2008-12-10 23:11:34 +0900 |
| commit | 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51 (patch) | |
| tree | 6f8fc3f4c507e7e91370dc0f7620b6686e173af9 | |
| parent | 9a1d3557dcd47365c12eeab584b822e57d994352 (diff) | |
sh: Update SuperH serial driver
The address of SCFSR register is wrong at SH7720/SH7721.
This patch fix this.
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
| -rw-r--r-- | drivers/serial/serial_sh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c index f30532b5aba..1d76a194a5f 100644 --- a/drivers/serial/serial_sh.c +++ b/drivers/serial/serial_sh.c @@ -94,7 +94,7 @@ # define LSR_ORER 1 # define FIFOLEVEL_MASK 0x1F #elif defined(CONFIG_CPU_SH7720) -# define SCLSR (vu_short *)(SCIF_BASE + 0x24) +# define SCLSR SCFSR # define LSR_ORER 0x0200 # define FIFOLEVEL_MASK 0x1F #elif defined(CONFIG_CPU_SH7710) || \ |
