[PATCH 13/24] scsi: scsi_transport_fc: remove leading spaces before tabs

From: Hui Tang
Date: Sat May 22 2021 - 04:41:44 EST


There are a few leading spaces before tabs and remove it by running
the following commard:

$ find . -name '*.[ch]' | xargs sed -r -i 's/^[ ]+\t/\t/'

Signed-off-by: Hui Tang <tanghui20@xxxxxxxxxx>
---
drivers/scsi/scsi_transport_fc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c
index da5b503..69fc8b8 100644
--- a/drivers/scsi/scsi_transport_fc.c
+++ b/drivers/scsi/scsi_transport_fc.c
@@ -2011,7 +2011,7 @@ store_fc_private_host_tgtid_bind_type(struct device *dev,
{
struct Scsi_Host *shost = transport_class_to_shost(dev);
struct fc_rport *rport;
- enum fc_tgtid_binding_type val;
+ enum fc_tgtid_binding_type val;
unsigned long flags;

if (get_fc_tgtid_bind_type_match(buf, &val))
--
2.8.1