mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ata: remove unnecessary code
Compile tested. remove unnecessary code that matches this coccinelle pattern if (...) return ret; return ret; Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
d4d8eaff78
commit
47db477e46
1 changed files with 1 additions and 7 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue