[SCSI] dpt_i2o: driver is only 32 bit so don't set 64 bit DMA mask

This fixes a potential corruption bug where the truncation would cause
reading or writing to the wrong memory area on machines with >4GB of
main memory.

Cc: Stable Kernel Tree <stable@kernel.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

+1 -2
+1 -2
drivers/scsi/dpt_i2o.c
··· 906 } 907 908 pci_set_master(pDev); 909 - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && 910 - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) 911 return -EINVAL; 912 913 base_addr0_phys = pci_resource_start(pDev,0);
··· 906 } 907 908 pci_set_master(pDev); 909 + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) 910 return -EINVAL; 911 912 base_addr0_phys = pci_resource_start(pDev,0);