mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target-ppc: Remove unnecessary variable
Compress lines and remove the variable. Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
738c8b01ba
commit
f9b8e7f63a
1 changed files with 1 additions and 2 deletions
|
@ -1782,8 +1782,7 @@ uint32_t kvmppc_get_tbfreq(void)
|
|||
|
||||
ns++;
|
||||
|
||||
retval = atoi(ns);
|
||||
return retval;
|
||||
return atoi(ns);
|
||||
}
|
||||
|
||||
bool kvmppc_get_host_serial(char **value)
|
||||
|
|
Loading…
Reference in a new issue