From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Klauser Subject: [PATCH 05/19] drivers/scsi/aic7xxx/aic79xx_osm: Use the DMA_{64,32}BIT_MASK constants Date: Sun, 20 Feb 2005 17:56:32 +0100 Message-ID: <20050220165632.GE14375@helium.tklauser.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Received: from server3.hostpoint.ch ([217.26.52.13]:18445 "EHLO server3.hostpoint.ch") by vger.kernel.org with ESMTP id S261875AbVBTQzq (ORCPT ); Sun, 20 Feb 2005 11:55:46 -0500 Content-Disposition: inline Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: kernel-janitors@lists.osdl.org Cc: linux-scsi@vger.kernel.org Hello, Description: 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 --- linux-2.6.11-rc4.orig/drivers/scsi/aic7xxx/aic79xx_osm.c 2005-02-13 17:13:06.000000000 +0100 +++ linux-2.6.11-rc4/drivers/scsi/aic7xxx/aic79xx_osm.c 2005-02-16 21:07:35.000000000 +0100 @@ -1706,7 +1706,7 @@ ahd_dmamem_alloc(struct ahd_softc *ahd, * our dma mask when doing allocations. */ if (ahd->dev_softc != NULL) - if (pci_set_dma_mask(ahd->dev_softc, 0xFFFFFFFF)) { + if (pci_set_dma_mask(ahd->dev_softc, DMA_32BIT_MASK)) { printk(KERN_WARNING "aic79xx: No suitable DMA available.\n"); kfree(map); return (ENODEV);