* [patch-kj] remove old ifdef'd code from aic7xxx_core.c
@ 2004-06-21 18:15 maximilian attems
0 siblings, 0 replies; only message in thread
From: maximilian attems @ 2004-06-21 18:15 UTC (permalink / raw)
To: linux-scsi
From: Domen Puncer <domen@coderock.org>
Patches to remove some old ifdefs.
kill compat cruft like #define ahd_pci_set_dma_mask pci_set_dma_mask
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>
---
linux-2.6.7-max/drivers/scsi/aic7xxx/aic7xxx_core.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff -puN drivers/scsi/aic7xxx/aic7xxx_core.c~remove-old-ifdefs-aic7xxx_core drivers/scsi/aic7xxx/aic7xxx_core.c
--- linux-2.6.7/drivers/scsi/aic7xxx/aic7xxx_core.c~remove-old-ifdefs-aic7xxx_core 2004-06-18 09:14:21.000000000 +0200
+++ linux-2.6.7-max/drivers/scsi/aic7xxx/aic7xxx_core.c 2004-06-18 09:14:21.000000000 +0200
@@ -4199,9 +4199,9 @@ ahc_probe_scbs(struct ahc_softc *ahc) {
static void
ahc_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
{
- bus_addr_t *baddr;
+ dma_addr_t *baddr;
- baddr = (bus_addr_t *)arg;
+ baddr = (dma_addr_t *)arg;
*baddr = segs->ds_addr;
}
@@ -4456,7 +4456,7 @@ ahc_alloc_scbs(struct ahc_softc *ahc)
struct scb_data *scb_data;
struct scb *next_scb;
struct sg_map_node *sg_map;
- bus_addr_t physaddr;
+ dma_addr_t physaddr;
struct ahc_dma_seg *segs;
int newcount;
int i;
@@ -4820,7 +4820,7 @@ ahc_init(struct ahc_softc *ahc)
if (ahc_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/1,
/*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
/*lowaddr*/ahc->flags & AHC_39BIT_ADDRESSING
- ? (bus_addr_t)0x7FFFFFFFFFULL
+ ? (dma_addr_t)0x7FFFFFFFFFULL
: BUS_SPACE_MAXADDR_32BIT,
/*highaddr*/BUS_SPACE_MAXADDR,
/*filter*/NULL, /*filterarg*/NULL,
_
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-06-21 18:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-21 18:15 [patch-kj] remove old ifdef'd code from aic7xxx_core.c maximilian attems
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).