Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: qlogicfas408: clean up a couple of indentation issues

An if statement is indented correctly and an outb statement has a redundant
empty comment and incorrect indentation. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Colin Ian King and committed by
Martin K. Petersen
d2e993ed d78e9a14

+2 -2
+2 -2
drivers/scsi/qlogicfas408.c
··· 139 139 } else { /* out */ 140 140 #if QL_TURBO_PDMA 141 141 rtrc(4) 142 - if (reqlen >= 128 && inb(qbase + 8) & 0x10) { /* empty */ 142 + if (reqlen >= 128 && inb(qbase + 8) & 0x10) { /* empty */ 143 143 outsl(qbase + 4, request, 32); 144 144 reqlen -= 128; 145 145 request += 128; ··· 240 240 outb(0x40 | qlcfg8 | priv->qinitid, qbase + 8); 241 241 outb(qlcfg7, qbase + 7); 242 242 outb(qlcfg6, qbase + 6); 243 - /**/ outb(qlcfg5, qbase + 5); /* select timer */ 243 + outb(qlcfg5, qbase + 5); /* select timer */ 244 244 outb(qlcfg9 & 7, qbase + 9); /* prescaler */ 245 245 /* outb(0x99, qbase + 5); */ 246 246 outb(scmd_id(cmd), qbase + 4);