diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-06-28 02:25:36 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-06-28 02:25:36 -0400 |
commit | 9174fc8f111982e024a00512c521ad8f1056fccb (patch) | |
tree | e8cd3f0bea432af9d970152b451eb96448000157 /include/linux | |
parent | 23241d43eac88f63a7f0bf4d5c12bbc496651585 (diff) |
serial: sh-sci: Fix up pretty name printing for port IRQs.
Presently these were all using the same static string with no regard to
dev_name() and the like. This implements a bit of rework to name the IRQ
dynamically, as it should have been doing all along anyways.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/serial_sci.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/serial_sci.h b/include/linux/serial_sci.h index 4ca130a90ea5..8bffe9ae2ca0 100644 --- a/include/linux/serial_sci.h +++ b/include/linux/serial_sci.h | |||
@@ -56,6 +56,8 @@ enum { | |||
56 | SCIx_TXI_IRQ, | 56 | SCIx_TXI_IRQ, |
57 | SCIx_BRI_IRQ, | 57 | SCIx_BRI_IRQ, |
58 | SCIx_NR_IRQS, | 58 | SCIx_NR_IRQS, |
59 | |||
60 | SCIx_MUX_IRQ = SCIx_NR_IRQS, /* special case */ | ||
59 | }; | 61 | }; |
60 | 62 | ||
61 | enum { | 63 | enum { |
@@ -82,6 +84,11 @@ enum { | |||
82 | [SCIx_BRI_IRQ] = (irq), \ | 84 | [SCIx_BRI_IRQ] = (irq), \ |
83 | } | 85 | } |
84 | 86 | ||
87 | #define SCIx_IRQ_IS_MUXED(port) \ | ||
88 | ((port)->cfg->irqs[SCIx_ERI_IRQ] == \ | ||
89 | (port)->cfg->irqs[SCIx_RXI_IRQ]) || \ | ||
90 | ((port)->cfg->irqs[SCIx_ERI_IRQ] && \ | ||
91 | !(port)->cfg->irqs[SCIx_RXI_IRQ]) | ||
85 | /* | 92 | /* |
86 | * SCI register subset common for all port types. | 93 | * SCI register subset common for all port types. |
87 | * Not all registers will exist on all parts. | 94 | * Not all registers will exist on all parts. |