Reset indentation of this flag. No functional change intended.

Found with gcc.

sys/dev/ata/chipsets/ata-siliconimage.c: In function 'ata_cmd_ch_attach':
sys/dev/ata/chipsets/ata-siliconimage.c:187:5:
 warning: this 'if' clause does not guard... [-Wmisleading-indentation]
     if (ctlr->chip->cfg2 & SII_INTR)
     ^~
sys/dev/ata/chipsets/ata-siliconimage.c:190:2:
note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  ch->flags |= ATA_NO_ATAPI_DMA;
This commit is contained in:
Sean Bruno 2018-07-03 15:56:22 +00:00
parent 7d729cedcc
commit 5f26382727
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335894

View file

@ -187,7 +187,7 @@ ata_cmd_ch_attach(device_t dev)
if (ctlr->chip->cfg2 & SII_INTR)
ch->hw.status = ata_cmd_status;
ch->flags |= ATA_NO_ATAPI_DMA;
ch->flags |= ATA_NO_ATAPI_DMA;
return 0;
}