lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 22 May 2021 16:37:27 +0800
From:   Hui Tang <tanghui20@...wei.com>
To:     <jejb@...ux.ibm.com>, <martin.petersen@...cle.com>
CC:     <linux-scsi@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
        <tanghui20@...wei.com>, Oliver Neukum <oliver@...kum.org>
Subject: [PATCH 23/24] scsi: dc395x: remove leading spaces before tabs

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/'

Cc: Oliver Neukum <oliver@...kum.org>
Signed-off-by: Hui Tang <tanghui20@...wei.com>
---
 drivers/scsi/dc395x.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index be87d5a..ccdbbf9 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -724,10 +724,10 @@ static struct DeviceCtlBlk *dcb_get_next(struct list_head *head,
 		}
 	/* if no next one take the head one (ie, wraparound) */
 	if (!next)
-        	list_for_each_entry(i, head, list) {
-        		next = i;
-        		break;
-        	}
+		list_for_each_entry(i, head, list) {
+			next = i;
+			break;
+		}
 
 	return next;
 }
@@ -4370,13 +4370,13 @@ static int adapter_init(struct AdapterCtlBlk *acb, unsigned long io_port,
 
 	/* get eeprom configuration information and command line settings etc */
 	check_eeprom(&acb->eeprom, io_port);
- 	print_eeprom_settings(&acb->eeprom);
+	print_eeprom_settings(&acb->eeprom);
 
 	/* setup adapter control block */	
 	adapter_init_params(acb);
 	
 	/* display card connectors/termination settings */
- 	adapter_print_config(acb);
+	adapter_print_config(acb);
 
 	if (adapter_sg_tables_alloc(acb)) {
 		dprintkl(KERN_DEBUG, "Memory allocation for SG tables failed\n");
@@ -4641,12 +4641,12 @@ static int dc395x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
 		dprintkl(KERN_INFO, "scsi_host_alloc failed\n");
 		goto fail;
 	}
- 	acb = (struct AdapterCtlBlk*)scsi_host->hostdata;
- 	acb->scsi_host = scsi_host;
- 	acb->dev = dev;
+	acb = (struct AdapterCtlBlk*)scsi_host->hostdata;
+	acb->scsi_host = scsi_host;
+	acb->dev = dev;
 
 	/* initialise the adapter and everything we need */
- 	if (adapter_init(acb, io_port_base, io_port_len, irq)) {
+	if (adapter_init(acb, io_port_base, io_port_len, irq)) {
 		dprintkl(KERN_INFO, "adapter init failed\n");
 		goto fail;
 	}
@@ -4660,7 +4660,7 @@ static int dc395x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
 	}
 	pci_set_drvdata(dev, scsi_host);
 	scsi_scan_host(scsi_host);
-        	
+
 	return 0;
 
 fail:
-- 
2.8.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ