The patch below fixes two categories of checkpatch

complaints on scst_local, namely "line over 80 columns" and "use tabs to indent
instead of spaces".

Signed-off-by: Bart Van Assche <bart.vanassche@gmail.com>
Signed-off-by: Richard Sharpe <realrichardsharpe@gmail.com>



git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@573 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2008-11-18 18:45:13 +00:00
parent ec7d33e537
commit bad0bad3da
+14 -13
View File
@@ -241,7 +241,7 @@ static ssize_t scst_local_add_host_store(struct device_driver *ddp,
} }
DRIVER_ATTR(add_host, S_IRUGO | S_IWUSR, scst_local_add_host_show, DRIVER_ATTR(add_host, S_IRUGO | S_IWUSR, scst_local_add_host_show,
scst_local_add_host_store); scst_local_add_host_store);
static int do_create_driverfs_files(void) static int do_create_driverfs_files(void)
{ {
@@ -404,7 +404,8 @@ static void copy_sense(struct scsi_cmnd *cmnd, struct scst_cmd *scst_cmnd)
*/ */
static int scst_local_send_resp(struct scsi_cmnd *cmnd, static int scst_local_send_resp(struct scsi_cmnd *cmnd,
struct scst_cmd *scst_cmnd, struct scst_cmd *scst_cmnd,
void (*done)(struct scsi_cmnd *), int scsi_result) void (*done)(struct scsi_cmnd *),
int scsi_result)
{ {
int ret = 0; int ret = 0;
@@ -751,9 +752,9 @@ static int __init scst_local_init(void)
/* /*
* register the target driver and then create a host. This makes sure * register the target driver and then create a host. This makes sure
* that we see any targets that are there. Gotta figure out how to * that we see any targets that are there. Gotta figure out how to
* tell the system that there are new targets when SCST creates them. * tell the system that there are new targets when SCST creates them.
*/ */
ret = scst_local_target_register(); ret = scst_local_target_register();
@@ -764,8 +765,8 @@ static int __init scst_local_init(void)
} }
/* /*
* Add adapters ... * Add adapters ...
*/ */
adapters = scst_local_add_host; adapters = scst_local_add_host;
scst_local_add_host = 0; scst_local_add_host = 0;
for (k = 0; k < adapters; k++) { for (k = 0; k < adapters; k++) {
@@ -857,10 +858,10 @@ static int scst_fake_lld_driver_probe(struct device *dev)
*((struct scst_local_host_info **)hpnt->hostdata) = scst_lcl_host; *((struct scst_local_host_info **)hpnt->hostdata) = scst_lcl_host;
if ((hpnt->this_id >= 0) && (scst_local_num_tgts > hpnt->this_id)) if ((hpnt->this_id >= 0) && (scst_local_num_tgts > hpnt->this_id))
hpnt->max_id = scst_local_num_tgts + 1; hpnt->max_id = scst_local_num_tgts + 1;
else else
hpnt->max_id = scst_local_num_tgts; hpnt->max_id = scst_local_num_tgts;
hpnt->max_lun = scst_local_max_luns - 1; hpnt->max_lun = scst_local_max_luns - 1;
ret = scsi_add_host(hpnt, &scst_lcl_host->dev); ret = scsi_add_host(hpnt, &scst_lcl_host->dev);
if (ret) { if (ret) {
@@ -924,8 +925,8 @@ static int scst_local_targ_detect(struct scst_tgt_template *tgt_template)
TRACE_ENTRY(); TRACE_ENTRY();
/* /*
* Register the adapter(s) * Register the adapter(s)
*/ */
adapter_count = scst_local_add_host; adapter_count = scst_local_add_host;