bhyve amd: Small cleanups in amdvi_dump_cmds

Bump offset with MOD_INC instead in amdvi_dump_cmds.

Reviewed by:	jhb
Approved by:	philip (mentor)
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D28862
This commit is contained in:
Ka Ho Ng 2021-03-23 16:11:56 +08:00
parent 62ffcaab8f
commit be97fc8dce

View File

@ -515,8 +515,7 @@ amdvi_dump_cmds(struct amdvi_softc *softc, int count)
printf(" [CMD%d, off:0x%x] opcode= 0x%x 0x%x"
" 0x%x 0x%lx\n", i, off, cmd->opcode,
cmd->word0, cmd->word1, cmd->addr);
off = (off + sizeof(struct amdvi_cmd)) %
(softc->cmd_max * sizeof(struct amdvi_cmd));
off = MOD_INC(off, sizeof(struct amdvi_cmd), softc->cmd_max);
}
}