diff options
author | Tejun Heo <tj@kernel.org> | 2017-06-28 20:18:13 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-06-29 16:20:59 +0200 |
commit | c8ccf812c36bfc939063b83614beaa2562828e07 (patch) | |
tree | c51963523acfeaf360097b6552b0aaacc9aab2dc /drivers/ata/libata-scsi.c | |
parent | libata: Support for an ATA PASS-THROUGH(32) command. (diff) | |
download | linux-c8ccf812c36bfc939063b83614beaa2562828e07.tar.xz linux-c8ccf812c36bfc939063b83614beaa2562828e07.zip |
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 <sfr@canb.auug.org.au>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/libata-scsi.c')
-rw-r--r-- | drivers/ata/libata-scsi.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |