scsi: fdomain: use BCTL_RST in fdomain_reset()
Commit1697c6a64c
("scsi: fdomain: Add register definitions") somehow missed the use of BCTL_RST in fdomain_reset(), leaving the magic number intact. Fix this issue (with no change in the generated object file). Fixes:1697c6a64c
("scsi: fdomain: Add register definitions") Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
b217598890
commit
a9651be7e4
|
@ -166,7 +166,7 @@ static int fdomain_test_loopback(int base)
|
|||
|
||||
static void fdomain_reset(int base)
|
||||
{
|
||||
outb(1, base + REG_BCTL);
|
||||
outb(BCTL_RST, base + REG_BCTL);
|
||||
mdelay(20);
|
||||
outb(0, base + REG_BCTL);
|
||||
mdelay(1150);
|
||||
|
|
Loading…
Reference in New Issue