Commit 694acdcd authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] ULL fixes for qlogicfc

parent 07b30b36
......@@ -718,8 +718,8 @@ int isp2x00_detect(Scsi_Host_Template * tmpt)
continue;
/* Try to configure DMA attributes. */
if (pci_set_dma_mask(pdev, (u64) 0xffffffffffffffff) &&
pci_set_dma_mask(pdev, (u64) 0xffffffff))
if (pci_set_dma_mask(pdev, 0xffffffffffffffffULL) &&
pci_set_dma_mask(pdev, 0xffffffffULL))
continue;
host = scsi_register(tmpt, sizeof(struct isp2x00_hostdata));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment