mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Fix some functions declared () rather than (void) (Ian Jackson)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4029 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
19f329ad7b
commit
3f47aa8c37
7 changed files with 12 additions and 12 deletions
|
@ -56,7 +56,7 @@ pal_handler_t pal_handlers[] = {
|
|||
|
||||
#if 0
|
||||
/* One must explicitely check that the TB is valid and the FOE bit is reset */
|
||||
static void update_itb ()
|
||||
static void update_itb (void)
|
||||
{
|
||||
/* This writes into a temp register, not the actual one */
|
||||
mtpr(TB_TAG);
|
||||
|
@ -65,7 +65,7 @@ static void update_itb ()
|
|||
mtpr(ITB_PTE);
|
||||
}
|
||||
|
||||
static void update_dtb ();
|
||||
static void update_dtb (void);
|
||||
{
|
||||
mtpr(TB_CTL);
|
||||
/* This write into a temp register, not the actual one */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue