From 52108a1ff02263e10b20544b7637241b0920983d Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Fri, 21 Jan 2011 19:53:51 +0900 Subject: [PATCH] mips_fulong: remove bogus HAS_AUDIO remove bogus HAS_AUDIO according to 738012bec4c67e697e766edadab3f522c552a04d. Cc: Blue Swirl Cc: Huacai Chen Cc: Aurelien Jarno Signed-off-by: Isaku Yamahata Signed-off-by: Aurelien Jarno --- hw/mips_fulong2e.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hw/mips_fulong2e.c b/hw/mips_fulong2e.c index 07eb9eeba..2783ed583 100644 --- a/hw/mips_fulong2e.c +++ b/hw/mips_fulong2e.c @@ -218,13 +218,11 @@ uint8_t eeprom_spd[0x80] = { }; /* Audio support */ -#ifdef HAS_AUDIO static void audio_init (PCIBus *pci_bus) { vt82c686b_ac97_init(pci_bus, PCI_DEVFN(FULONG2E_VIA_SLOT, 5)); vt82c686b_mc97_init(pci_bus, PCI_DEVFN(FULONG2E_VIA_SLOT, 6)); } -#endif /* Network support */ static void network_init (void) @@ -391,9 +389,7 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const char *boot_device, } /* Sound card */ -#ifdef HAS_AUDIO audio_init(pci_bus); -#endif /* Network card */ network_init(); }