From: Tejun Heo Date: Wed, 28 Jun 2017 18:18:13 +0000 (-0400) Subject: libata: fix build warning from unused goto label X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c8ccf812c36bfc939063b83614beaa2562828e07;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git libata: fix build warning from unused goto label b1ffbf854e08 ("libata: Support for an ATA PASS-THROUGH(32) command.") introduced an unused goto label. Remove it. Reported-by: Stephen Rothwell Signed-off-by: Tejun Heo --- diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 815c6e240aea..9d1b66b4ce7b 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c @@ -4191,7 +4191,6 @@ static unsigned int ata_scsi_var_len_cdb_xlat(struct ata_queued_cmd *qc) if (sa == ATA_32) return ata_scsi_pass_thru(qc); -unspprt_sa: /* unsupported service action */ return 1; }