mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Remove empty statements
Thanks to Laszlo Ersek for spotting the double semicolon in target/i386/kvm.c I have trivially grepped the tree for ';;' in C files. Suggested-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Ladi Prosek <lprosek@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
411ad78115
commit
3c254ab8d7
7 changed files with 7 additions and 7 deletions
|
@ -335,7 +335,7 @@ static uint64_t imx6_ccm_get_ipg_clk(IMX6CCMState *dev)
|
|||
uint64_t freq = 0;
|
||||
|
||||
freq = imx6_ccm_get_ahb_clk(dev)
|
||||
/ (1 + EXTRACT(dev->ccm[CCM_CBCDR], IPG_PODF));;
|
||||
/ (1 + EXTRACT(dev->ccm[CCM_CBCDR], IPG_PODF));
|
||||
|
||||
DPRINTF("freq = %d\n", (uint32_t)freq);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue