mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Delete write only variables
Compiling with GCC 4.6.0 20100925 produced warnings like: /src/qemu/net/tap-win32.c: In function 'tap_win32_open': /src/qemu/net/tap-win32.c:582:12: error: variable 'hThread' set but not used [-Werror=unused-but-set-variable] Fix by removing the unused variables. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
ae0bfb79aa
commit
49a2942d9b
14 changed files with 24 additions and 75 deletions
|
@ -265,13 +265,11 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const char *boot_device,
|
|||
qemu_irq *cpu_exit_irq;
|
||||
int via_devfn;
|
||||
PCIBus *pci_bus;
|
||||
ISADevice *isa_dev;
|
||||
uint8_t *eeprom_buf;
|
||||
i2c_bus *smbus;
|
||||
int i;
|
||||
DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
|
||||
DeviceState *eeprom;
|
||||
ISADevice *rtc_state;
|
||||
CPUState *env;
|
||||
|
||||
/* init CPUs */
|
||||
|
@ -378,9 +376,9 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const char *boot_device,
|
|||
DMA_init(0, cpu_exit_irq);
|
||||
|
||||
/* Super I/O */
|
||||
isa_dev = isa_create_simple("i8042");
|
||||
isa_create_simple("i8042");
|
||||
|
||||
rtc_state = rtc_init(2000, NULL);
|
||||
rtc_init(2000, NULL);
|
||||
|
||||
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
|
||||
if (serial_hds[i]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue