diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-17 20:21:51 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-17 20:21:51 +0000 |
commit | a5f1b965dae70f7d41721edaacb109d80721b966 (patch) | |
tree | 99ae880ed0b785c12107a9744d4446707823ceb4 /hw | |
parent | 6f41b7772d84494b47252aaff67a7c16cc37dbe0 (diff) | |
download | qemu-a5f1b965dae70f7d41721edaacb109d80721b966.zip qemu-a5f1b965dae70f7d41721edaacb109d80721b966.tar.gz qemu-a5f1b965dae70f7d41721edaacb109d80721b966.tar.bz2 |
Fix warnings that would be generated by gcc -Wstrict-prototypes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5021 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/mips_malta.c | 2 | ||||
-rw-r--r-- | hw/shix.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index a64e225..63af965 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -155,7 +155,7 @@ static eeprom24c0x_t eeprom = { }, }; -static uint8_t eeprom24c0x_read() +static uint8_t eeprom24c0x_read(void) { logout("%u: scl = %u, sda = %u, data = 0x%02x\n", eeprom.tick, eeprom.scl, eeprom.sda, eeprom.data); @@ -45,17 +45,17 @@ void irq_info(void) /* XXXXX */ } -void pic_info() +void pic_info(void) { /* XXXXX */ } -void vga_update_display() +void vga_update_display(void) { /* XXXXX */ } -void vga_invalidate_display() +void vga_invalidate_display(void) { /* XXXXX */ } |