]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
IB/srp: Switch from dma_device to dev.parent
authorBart Van Assche <bart.vanassche@sandisk.com>
Fri, 20 Jan 2017 21:04:32 +0000 (13:04 -0800)
committerDoug Ledford <dledford@redhat.com>
Tue, 24 Jan 2017 17:26:17 +0000 (12:26 -0500)
Prepare for removal of ib_device.dma_device.

Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/ulp/srp/ib_srp.c

index 8ddc071231931157ec459a6db4a0947d7b05f539..64b33d69b8741cac8a29608f6e5ce19b368d5182 100644 (file)
@@ -2904,7 +2904,7 @@ static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
        sprintf(target->target_name, "SRP.T10:%016llX",
                be64_to_cpu(target->id_ext));
 
-       if (scsi_add_host(target->scsi_host, host->srp_dev->dev->dma_device))
+       if (scsi_add_host(target->scsi_host, host->srp_dev->dev->dev.parent))
                return -ENODEV;
 
        memcpy(ids.port_id, &target->id_ext, 8);
@@ -3515,7 +3515,7 @@ static struct srp_host *srp_add_port(struct srp_device *device, u8 port)
        host->port = port;
 
        host->dev.class = &srp_class;
-       host->dev.parent = device->dev->dma_device;
+       host->dev.parent = device->dev->dev.parent;
        dev_set_name(&host->dev, "srp-%s-%d", device->dev->name, port);
 
        if (device_register(&host->dev))