mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
fw_state ad cur_state are holding unsigned bitfields, so declare then
as unsigned as well. Submitted by: rdivacky
This commit is contained in:
parent
f340e9fe71
commit
cadd4fa0b4
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ mfi_issue_cmd_ppc(struct mfi_softc *sc,uint32_t bus_add,uint32_t frame_cnt)
|
|||
static int
|
||||
mfi_transition_firmware(struct mfi_softc *sc)
|
||||
{
|
||||
int32_t fw_state, cur_state;
|
||||
uint32_t fw_state, cur_state;
|
||||
int max_wait, i;
|
||||
|
||||
fw_state = sc->mfi_read_fw_status(sc)& MFI_FWSTATE_MASK;
|
||||
|
|
|
|||
Loading…
Reference in a new issue