mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
arcmsr(4): Fix typo: rebulid -> rebuild
MFC after: 3 days Pull Request: https://github.com/freebsd/freebsd-src/pull/819
This commit is contained in:
parent
8524dc53fd
commit
2f7e72bd1c
1 changed files with 10 additions and 10 deletions
|
|
@ -1366,7 +1366,7 @@ static void arcmsr_stop_hba_bgrb(struct AdapterControlBlock *acb)
|
|||
CHIP_REG_WRITE32(HBA_MessageUnit,
|
||||
0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_STOP_BGRB);
|
||||
if(!arcmsr_hba_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
|
||||
printf("arcmsr%d: wait 'stop adapter background rebuild' timeout \n"
|
||||
, acb->pci_unit);
|
||||
}
|
||||
}
|
||||
|
|
@ -1380,7 +1380,7 @@ static void arcmsr_stop_hbb_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
|
||||
WRITE_CHIP_REG32(0, phbbmu->drv2iop_doorbell, ARCMSR_MESSAGE_STOP_BGRB);
|
||||
if(!arcmsr_hbb_wait_msgint_ready(acb)) {
|
||||
printf( "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
|
||||
printf( "arcmsr%d: wait 'stop adapter background rebuild' timeout \n"
|
||||
, acb->pci_unit);
|
||||
}
|
||||
}
|
||||
|
|
@ -1394,7 +1394,7 @@ static void arcmsr_stop_hbc_bgrb(struct AdapterControlBlock *acb)
|
|||
CHIP_REG_WRITE32(HBC_MessageUnit, 0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_STOP_BGRB);
|
||||
CHIP_REG_WRITE32(HBC_MessageUnit, 0, inbound_doorbell,ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE);
|
||||
if(!arcmsr_hbc_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'stop adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'stop adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -1406,7 +1406,7 @@ static void arcmsr_stop_hbd_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
|
||||
CHIP_REG_WRITE32(HBD_MessageUnit, 0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_STOP_BGRB);
|
||||
if(!arcmsr_hbd_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'stop adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'stop adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -1420,7 +1420,7 @@ static void arcmsr_stop_hbe_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->out_doorbell ^= ARCMSR_HBEMU_DRV2IOP_MESSAGE_CMD_DONE;
|
||||
CHIP_REG_WRITE32(HBE_MessageUnit, 0, iobound_doorbell, acb->out_doorbell);
|
||||
if(!arcmsr_hbe_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'stop adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'stop adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -3367,7 +3367,7 @@ static void arcmsr_start_hba_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->acb_flags |= ACB_F_MSG_START_BGRB;
|
||||
CHIP_REG_WRITE32(HBA_MessageUnit, 0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_START_BGRB);
|
||||
if(!arcmsr_hba_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'start adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'start adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -3380,7 +3380,7 @@ static void arcmsr_start_hbb_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->acb_flags |= ACB_F_MSG_START_BGRB;
|
||||
WRITE_CHIP_REG32(0, phbbmu->drv2iop_doorbell, ARCMSR_MESSAGE_START_BGRB);
|
||||
if(!arcmsr_hbb_wait_msgint_ready(acb)) {
|
||||
printf( "arcmsr%d: wait 'start adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf( "arcmsr%d: wait 'start adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -3393,7 +3393,7 @@ static void arcmsr_start_hbc_bgrb(struct AdapterControlBlock *acb)
|
|||
CHIP_REG_WRITE32(HBC_MessageUnit, 0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_START_BGRB);
|
||||
CHIP_REG_WRITE32(HBC_MessageUnit, 0, inbound_doorbell, ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE);
|
||||
if(!arcmsr_hbc_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'start adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'start adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -3405,7 +3405,7 @@ static void arcmsr_start_hbd_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->acb_flags |= ACB_F_MSG_START_BGRB;
|
||||
CHIP_REG_WRITE32(HBD_MessageUnit, 0, inbound_msgaddr0, ARCMSR_INBOUND_MESG0_START_BGRB);
|
||||
if(!arcmsr_hbd_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'start adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'start adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -3419,7 +3419,7 @@ static void arcmsr_start_hbe_bgrb(struct AdapterControlBlock *acb)
|
|||
acb->out_doorbell ^= ARCMSR_HBEMU_DRV2IOP_MESSAGE_CMD_DONE;
|
||||
CHIP_REG_WRITE32(HBE_MessageUnit, 0, iobound_doorbell, acb->out_doorbell);
|
||||
if(!arcmsr_hbe_wait_msgint_ready(acb)) {
|
||||
printf("arcmsr%d: wait 'start adapter background rebulid' timeout \n", acb->pci_unit);
|
||||
printf("arcmsr%d: wait 'start adapter background rebuild' timeout \n", acb->pci_unit);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue