Drop leftover debug function declarations

Change-Id: Ib93b816e7ab3146f6f70ad4089327cd6b7bc7c24
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/30893
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: David Guckian
Reviewed-by: Vanny E <vanessa.f.eusebio@intel.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Kyösti Mälkki 2019-01-13 18:22:08 +02:00 committed by Nico Huber
parent d78a202843
commit 0a656f033b
6 changed files with 0 additions and 37 deletions

View File

@ -63,13 +63,6 @@ void rangeley_late_initialization(void);
u32 sideband_read(int port, int reg); u32 sideband_read(int port, int reg);
void sideband_write(int port, int reg, long data); void sideband_write(int port, int reg, long data);
/* debugging functions */
void print_pci_devices(void);
void dump_pci_device(unsigned dev);
void dump_pci_devices(void);
void dump_spd_registers(void);
void report_platform_info(void);
#ifndef __SIMPLE_DEVICE__ #ifndef __SIMPLE_DEVICE__
void northbridge_acpi_fill_ssdt_generator(struct device *device); void northbridge_acpi_fill_ssdt_generator(struct device *device);
#endif #endif

View File

@ -223,11 +223,6 @@ void haswell_late_initialization(void);
void set_translation_table(int start, int end, u64 base, int inc); void set_translation_table(int start, int end, u64 base, int inc);
void haswell_unhide_peg(void); void haswell_unhide_peg(void);
/* debugging functions */
void print_pci_devices(void);
void dump_pci_device(unsigned dev);
void dump_pci_devices(void);
void dump_spd_registers(void);
void report_platform_info(void); void report_platform_info(void);
#endif /* !__SMM__ */ #endif /* !__SMM__ */

View File

@ -272,12 +272,6 @@ int bridge_silicon_revision(void);
void nehalem_early_initialization(int chipset_type); void nehalem_early_initialization(int chipset_type);
void nehalem_late_initialization(void); void nehalem_late_initialization(void);
/* debugging functions */
void print_pci_devices(void);
void dump_pci_device(unsigned dev);
void dump_pci_devices(void);
void dump_spd_registers(void);
void report_platform_info(void);
#endif /* !__SMM__ */ #endif /* !__SMM__ */
#endif #endif

View File

@ -213,12 +213,6 @@ void sandybridge_init_iommu(void);
void sandybridge_late_initialization(void); void sandybridge_late_initialization(void);
void northbridge_romstage_finalize(int s3resume); void northbridge_romstage_finalize(int s3resume);
/* debugging functions */
void print_pci_devices(void);
void dump_pci_device(unsigned dev);
void dump_pci_devices(void);
void dump_spd_registers(void);
#endif /* !__SMM__ */ #endif /* !__SMM__ */
void pch_enable_lpc(void); void pch_enable_lpc(void);

View File

@ -22,12 +22,4 @@
//void bootblock_systemagent_early_init(void); //void bootblock_systemagent_early_init(void);
void early_uart_init(void); void early_uart_init(void);
/* Bootblock post console init programming */
//void enable_smbus(void);
//void i2c_early_init(void);
//void pch_early_init(void);
//void report_platform_info(void);
//void report_memory_config(void);
//void set_max_freq(void);
#endif #endif

View File

@ -58,11 +58,6 @@ int soc_silicon_type(void);
int soc_silicon_supported(int type, int rev); int soc_silicon_supported(int type, int rev);
void soc_enable(struct device *dev); void soc_enable(struct device *dev);
/* debugging functions */
void print_pci_devices(void);
void dump_pci_device(unsigned dev);
void dump_pci_devices(void);
void dump_spd_registers(void);
void report_platform_info(void); void report_platform_info(void);
#endif /* __PRE_RAM__ */ #endif /* __PRE_RAM__ */