diff mbox

libata: fix build warning in ata_scsi_var_len_cdb_xlat

Message ID 20170628200421.3047383-1-arnd@arndb.de
State New
Headers show

Commit Message

Arnd Bergmann June 28, 2017, 8:04 p.m. UTC
This new harmless warning just showed up:

drivers/ata/libata-scsi.c: In function 'ata_scsi_var_len_cdb_xlat':
drivers/ata/libata-scsi.c:4194:1: error: label 'unspprt_sa' defined but not used [-Werror=unused-label]

The label is obviously unused and can be removed.

Fixes: b1ffbf854e08 ("libata: Support for an ATA PASS-THROUGH(32) command.")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 drivers/ata/libata-scsi.c | 1 -
 1 file changed, 1 deletion(-)

-- 
2.9.0

Comments

Tejun Heo June 28, 2017, 9:25 p.m. UTC | #1
Hello, Arnd.

On Wed, Jun 28, 2017 at 10:04:03PM +0200, Arnd Bergmann wrote:
> This new harmless warning just showed up:

> 

> drivers/ata/libata-scsi.c: In function 'ata_scsi_var_len_cdb_xlat':

> drivers/ata/libata-scsi.c:4194:1: error: label 'unspprt_sa' defined but not used [-Werror=unused-label]

> 

> The label is obviously unused and can be removed.

> 

> Fixes: b1ffbf854e08 ("libata: Support for an ATA PASS-THROUGH(32) command.")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Already fixed a couple hours ago.  Sorry about the noise.

Thanks.

-- 
tejun
diff mbox

Patch

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;
 }