diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-04-25 21:32:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-25 21:32:12 -0400 |
commit | 2c6e75999000ebc942526466dbd0de37bfac73a4 (patch) | |
tree | 5a3c9d98da4f744fa1cedc32cb74c6dc124adc57 /drivers/serial | |
parent | ab2fd30b668b1687a9ca9e9ea0b60145deeafe84 (diff) |
[PATCH] ppc annotations: mpsc
Usual iomem annotations + NULL noise removal.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/mpsc.c | 14 | ||||
-rw-r--r-- | drivers/serial/mpsc.h | 10 |
2 files changed, 12 insertions, 12 deletions
diff --git a/drivers/serial/mpsc.c b/drivers/serial/mpsc.c index d0dfc3cf9245..a8314aee2ab8 100644 --- a/drivers/serial/mpsc.c +++ b/drivers/serial/mpsc.c | |||
@@ -329,8 +329,8 @@ mpsc_sdma_stop(struct mpsc_port_info *pi) | |||
329 | mpsc_sdma_cmd(pi, SDMA_SDCM_AR | SDMA_SDCM_AT); | 329 | mpsc_sdma_cmd(pi, SDMA_SDCM_AR | SDMA_SDCM_AT); |
330 | 330 | ||
331 | /* Clear the SDMA current and first TX and RX pointers */ | 331 | /* Clear the SDMA current and first TX and RX pointers */ |
332 | mpsc_sdma_set_tx_ring(pi, 0); | 332 | mpsc_sdma_set_tx_ring(pi, NULL); |
333 | mpsc_sdma_set_rx_ring(pi, 0); | 333 | mpsc_sdma_set_rx_ring(pi, NULL); |
334 | 334 | ||
335 | /* Disable interrupts */ | 335 | /* Disable interrupts */ |
336 | mpsc_sdma_intr_mask(pi, 0xf); | 336 | mpsc_sdma_intr_mask(pi, 0xf); |
@@ -1540,8 +1540,8 @@ mpsc_shared_unmap_regs(void) | |||
1540 | MPSC_SDMA_INTR_REG_BLOCK_SIZE); | 1540 | MPSC_SDMA_INTR_REG_BLOCK_SIZE); |
1541 | } | 1541 | } |
1542 | 1542 | ||
1543 | mpsc_shared_regs.mpsc_routing_base = 0; | 1543 | mpsc_shared_regs.mpsc_routing_base = NULL; |
1544 | mpsc_shared_regs.sdma_intr_base = 0; | 1544 | mpsc_shared_regs.sdma_intr_base = NULL; |
1545 | 1545 | ||
1546 | mpsc_shared_regs.mpsc_routing_base_p = 0; | 1546 | mpsc_shared_regs.mpsc_routing_base_p = 0; |
1547 | mpsc_shared_regs.sdma_intr_base_p = 0; | 1547 | mpsc_shared_regs.sdma_intr_base_p = 0; |
@@ -1678,9 +1678,9 @@ mpsc_drv_unmap_regs(struct mpsc_port_info *pi) | |||
1678 | release_mem_region(pi->brg_base_p, MPSC_BRG_REG_BLOCK_SIZE); | 1678 | release_mem_region(pi->brg_base_p, MPSC_BRG_REG_BLOCK_SIZE); |
1679 | } | 1679 | } |
1680 | 1680 | ||
1681 | pi->mpsc_base = 0; | 1681 | pi->mpsc_base = NULL; |
1682 | pi->sdma_base = 0; | 1682 | pi->sdma_base = NULL; |
1683 | pi->brg_base = 0; | 1683 | pi->brg_base = NULL; |
1684 | 1684 | ||
1685 | pi->mpsc_base_p = 0; | 1685 | pi->mpsc_base_p = 0; |
1686 | pi->sdma_base_p = 0; | 1686 | pi->sdma_base_p = 0; |
diff --git a/drivers/serial/mpsc.h b/drivers/serial/mpsc.h index 1f7294b7095f..678dbcf06c8f 100644 --- a/drivers/serial/mpsc.h +++ b/drivers/serial/mpsc.h | |||
@@ -83,8 +83,8 @@ struct mpsc_shared_regs { | |||
83 | phys_addr_t mpsc_routing_base_p; | 83 | phys_addr_t mpsc_routing_base_p; |
84 | phys_addr_t sdma_intr_base_p; | 84 | phys_addr_t sdma_intr_base_p; |
85 | 85 | ||
86 | void *mpsc_routing_base; | 86 | void __iomem *mpsc_routing_base; |
87 | void *sdma_intr_base; | 87 | void __iomem *sdma_intr_base; |
88 | 88 | ||
89 | u32 MPSC_MRR_m; | 89 | u32 MPSC_MRR_m; |
90 | u32 MPSC_RCRR_m; | 90 | u32 MPSC_RCRR_m; |
@@ -120,9 +120,9 @@ struct mpsc_port_info { | |||
120 | phys_addr_t brg_base_p; | 120 | phys_addr_t brg_base_p; |
121 | 121 | ||
122 | /* Virtual addresses of various blocks of registers (from platform) */ | 122 | /* Virtual addresses of various blocks of registers (from platform) */ |
123 | void *mpsc_base; | 123 | void __iomem *mpsc_base; |
124 | void *sdma_base; | 124 | void __iomem *sdma_base; |
125 | void *brg_base; | 125 | void __iomem *brg_base; |
126 | 126 | ||
127 | /* Descriptor ring and buffer allocations */ | 127 | /* Descriptor ring and buffer allocations */ |
128 | void *dma_region; | 128 | void *dma_region; |