Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47db477e authored by Greg Dietsche's avatar Greg Dietsche Committed by Jeff Garzik
Browse files

ata: remove unnecessary code



Compile tested.
remove unnecessary code that matches this coccinelle pattern
	if (...)
		return ret;
	return ret;

Signed-off-by: default avatarGreg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent d4d8eaff
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -195,8 +195,6 @@ static int pacpi_port_start(struct ata_port *ap)
	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
	struct pata_acpi *acpi;

	int ret;

	if (ap->acpi_handle == NULL)
		return -ENODEV;

@@ -205,11 +203,7 @@ static int pacpi_port_start(struct ata_port *ap)
		return -ENOMEM;
	acpi->mask[0] = pacpi_discover_modes(ap, &ap->link.device[0]);
	acpi->mask[1] = pacpi_discover_modes(ap, &ap->link.device[1]);
	ret = ata_bmdma_port_start(ap);
	if (ret < 0)
		return ret;

	return ret;
	return ata_bmdma_port_start(ap);
}

static struct scsi_host_template pacpi_sht = {