mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
ram: Rename qemu_target_page_bits() to qemu_target_page_size()
It was used as a size in all cases except one. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
a0a8aa147a
commit
20afaed98b
5 changed files with 13 additions and 13 deletions
4
exec.c
4
exec.c
|
|
@ -3307,9 +3307,9 @@ int cpu_memory_rw_debug(CPUState *cpu, target_ulong addr,
|
|||
* Allows code that needs to deal with migration bitmaps etc to still be built
|
||||
* target independent.
|
||||
*/
|
||||
size_t qemu_target_page_bits(void)
|
||||
size_t qemu_target_page_size(void)
|
||||
{
|
||||
return TARGET_PAGE_BITS;
|
||||
return TARGET_PAGE_SIZE;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue