aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
authorAlexander Shiyan <shc_work@mail.ru>2013-07-31 06:55:45 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-31 21:09:35 -0400
commit85c996907473e4ef824774b97b26499adf66521f (patch)
treeba1d87ea9bb219d4828e9d87888f3df4d4fcdf23 /include/linux/platform_data
parentea4c39beace859139bc184a1aebdccdc12c04a2e (diff)
serial: sccnxp: Add DT support
Add DT support to the SCCNCP serial driver. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/serial-sccnxp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/platform_data/serial-sccnxp.h b/include/linux/platform_data/serial-sccnxp.h
index af0c8c3b89ae..98373d6add27 100644
--- a/include/linux/platform_data/serial-sccnxp.h
+++ b/include/linux/platform_data/serial-sccnxp.h
@@ -78,11 +78,11 @@
78/* SCCNXP platform data structure */ 78/* SCCNXP platform data structure */
79struct sccnxp_pdata { 79struct sccnxp_pdata {
80 /* Shift for A0 line */ 80 /* Shift for A0 line */
81 const u8 reg_shift; 81 u32 reg_shift;
82 /* Modem control lines configuration */ 82 /* Modem control lines configuration */
83 const u32 mctrl_cfg[SCCNXP_MAX_UARTS]; 83 u32 mctrl_cfg[SCCNXP_MAX_UARTS];
84 /* Timer value for polling mode (usecs) */ 84 /* Timer value for polling mode (usecs) */
85 const unsigned int poll_time_us; 85 u32 poll_time_us;
86}; 86};
87 87
88#endif 88#endif