From: Clemens Ladisch Date: Fri, 18 May 2012 16:39:39 +0000 (+0200) Subject: firewire: sbp2: give correct DMA device to scsi framework X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=473ffe6560fd5fa5fd5a488e8948899231972bd5;p=linux-beck.git firewire: sbp2: give correct DMA device to scsi framework The sbp2 driver does DMA not on the unit but on the card device. The driver worked even with the wrong device because at the moment, it happens to reimplement the DMA functions of the SCSI framework. Signed-off-by: Clemens Ladisch Signed-off-by: Stefan Richter --- diff --git a/drivers/firewire/sbp2.c b/drivers/firewire/sbp2.c index b7e65d7eab64..2e202d3bf84d 100644 --- a/drivers/firewire/sbp2.c +++ b/drivers/firewire/sbp2.c @@ -1163,7 +1163,8 @@ static int sbp2_probe(struct device *dev) shost->max_cmd_len = SBP2_MAX_CDB_SIZE; - if (scsi_add_host(shost, &unit->device) < 0) + if (scsi_add_host_with_dma(shost, &unit->device, + device->card->device) < 0) goto fail_shost_put; /* implicit directory ID */