[SCSI] drivers/scsi: Adjust confusing if indentation
Outdent the code following the if. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r disable braces4@ position p1,p2; statement S1,S2; @@ ( if (...) { ... } | if (...) S1@p1 S2@p2 ) @script:python@ p1 << r.p1; p2 << r.p2; @@ if (p1[0].column == p2[0].column): cocci.print_main("branch",p1) cocci.print_secs("after",p2) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Nick Cheng <nick.cheng@areca.com.tw> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
da99e307aa
commit
7968f1944c
|
@ -878,8 +878,8 @@ static void arcmsr_report_ccb_state(struct AdapterControlBlock *acb,
|
|||
if (!error) {
|
||||
if (acb->devstate[id][lun] == ARECA_RAID_GONE)
|
||||
acb->devstate[id][lun] = ARECA_RAID_GOOD;
|
||||
ccb->pcmd->result = DID_OK << 16;
|
||||
arcmsr_ccb_complete(ccb);
|
||||
ccb->pcmd->result = DID_OK << 16;
|
||||
arcmsr_ccb_complete(ccb);
|
||||
}else{
|
||||
switch (ccb->arcmsr_cdb.DeviceStatus) {
|
||||
case ARCMSR_DEV_SELECT_TIMEOUT: {
|
||||
|
|
|
@ -534,7 +534,7 @@ _base_display_event_data(struct MPT2SAS_ADAPTER *ioc,
|
|||
if (event_data->DiscoveryStatus)
|
||||
printk("discovery_status(0x%08x)",
|
||||
le32_to_cpu(event_data->DiscoveryStatus));
|
||||
printk("\n");
|
||||
printk("\n");
|
||||
return;
|
||||
}
|
||||
case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
|
||||
|
|
Loading…
Reference in New Issue