Use the DMA_{64,32}BIT_MASK constants from dma-mapping.h when calling pci_set_dma_mask() or pci_set_consistent_dma_mask() See http://marc.theaimsgroup.com/?t=108001993000001&r=1&w=2 for details Signed-off-by: Tobias Klauser Signed-off-by: Domen Puncer --- kj-domen/drivers/scsi/aic7xxx/aic7xxx_osm.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/scsi/aic7xxx/aic7xxx_osm.c~dma_mask-drivers_scsi_aic7xxx_aic7xxx_osm drivers/scsi/aic7xxx/aic7xxx_osm.c --- kj/drivers/scsi/aic7xxx/aic7xxx_osm.c~dma_mask-drivers_scsi_aic7xxx_aic7xxx_osm 2005-03-02 10:48:16.000000000 +0100 +++ kj-domen/drivers/scsi/aic7xxx/aic7xxx_osm.c 2005-03-02 10:48:16.000000000 +0100 @@ -1361,7 +1361,7 @@ ahc_dmamem_alloc(struct ahc_softc *ahc, * our dma mask when doing allocations. */ if (ahc->dev_softc != NULL) - if (pci_set_dma_mask(ahc->dev_softc, 0xFFFFFFFF)) { + if (pci_set_dma_mask(ahc->dev_softc, DMA_32BIT_MASK)) { printk(KERN_WARNING "aic7xxx: No suitable DMA available.\n"); kfree(map); return (ENODEV); _