diff options
author | Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | 2008-11-11 12:19:05 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-11-12 12:29:56 +0900 |
commit | 1a22f08dbd0e77c7cf45b5f527f93131d0b591b6 (patch) | |
tree | c3f1309b26c6c8072b1194d387931ad331a36599 /include | |
parent | acca4f4d9bd657e8bc7e1665ba5077465138f133 (diff) | |
download | linux-1a22f08dbd0e77c7cf45b5f527f93131d0b591b6.tar.bz2 |
serial: sh-sci: fix cannot work SH7723 SCIFA
SH7723 has SCIFA. This module is similer SCI register map, but it has FIFO.
So this patch adds new type(PORT_SCIFA) and change some type checking.
Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/serial_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index e27f216361fc..4e4f1277f3bf 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -155,6 +155,9 @@ #define PORT_SC26XX 82 +/* SH-SCI */ +#define PORT_SCIFA 83 + #ifdef __KERNEL__ #include <linux/compiler.h> |