Message ID | 20170628200421.3047383-1-arnd@arndb.de |
---|---|
State | New |
Headers | show |
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 --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; }
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