aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/cyclades.h
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2009-06-11 07:29:27 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-11 11:50:57 -0400
commit97e87f8ebe978e881c7325ba490574bd5500b133 (patch)
tree272dea45cc1a3d020a9290c46fbdf7ec866fbd34 /include/linux/cyclades.h
parent5ba5a5d21204f61ff655b322a90ed91c75194e4b (diff)
tty: cyclades, plx9060 casts cleanup
Remove ugly all-over-the-code casts of ctl_addr to 9060 space. Add an union to the cyclades_card structure, which contains a pointer to both 9050 and 9060 spaces. The 9050 space layout is unknown, so let it still as a void __iomem pointer. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/cyclades.h')
-rw-r--r--include/linux/cyclades.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/include/linux/cyclades.h b/include/linux/cyclades.h
index 788850ba4e75..9ae03d5b3590 100644
--- a/include/linux/cyclades.h
+++ b/include/linux/cyclades.h
@@ -507,16 +507,19 @@ struct ZFW_CTRL {
507 507
508/* Per card data structure */ 508/* Per card data structure */
509struct cyclades_card { 509struct cyclades_card {
510 void __iomem *base_addr; 510 void __iomem *base_addr;
511 void __iomem *ctl_addr; 511 union {
512 int irq; 512 void __iomem *p9050;
513 unsigned int num_chips; /* 0 if card absent, -1 if Z/PCI, else Y */ 513 struct RUNTIME_9060 __iomem *p9060;
514 unsigned int first_line; /* minor number of first channel on card */ 514 } ctl_addr;
515 unsigned int nports; /* Number of ports in the card */ 515 int irq;
516 int bus_index; /* address shift - 0 for ISA, 1 for PCI */ 516 unsigned int num_chips; /* 0 if card absent, -1 if Z/PCI, else Y */
517 int intr_enabled; /* FW Interrupt flag - 0 disabled, 1 enabled */ 517 unsigned int first_line; /* minor number of first channel on card */
518 spinlock_t card_lock; 518 unsigned int nports; /* Number of ports in the card */
519 struct cyclades_port *ports; 519 int bus_index; /* address shift - 0 for ISA, 1 for PCI */
520 int intr_enabled; /* FW Interrupt flag - 0 disabled, 1 enabled */
521 spinlock_t card_lock;
522 struct cyclades_port *ports;
520}; 523};
521 524
522/*************************************** 525/***************************************