Make smp_write_bus static (local scope), to prevent new boards from

using it directly again.

Signed-off-by: Patrick Georgi <patrick@georgi-clan.de
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6118 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi patrick 2010-11-23 07:19:54 +00:00 committed by Patrick Georgi
parent bcaea142f3
commit 612fcc3955
2 changed files with 1 additions and 3 deletions

View File

@ -157,7 +157,7 @@ void smp_write_processors(struct mp_config_table *mc)
}
}
void smp_write_bus(struct mp_config_table *mc,
static void smp_write_bus(struct mp_config_table *mc,
unsigned char id, const char *bustype)
{
struct mpc_config_bus *mpc;

View File

@ -243,8 +243,6 @@ void smp_write_processor(struct mp_config_table *mc,
unsigned char cpuflag, unsigned int cpufeature,
unsigned int featureflag);
void smp_write_processors(struct mp_config_table *mc);
void smp_write_bus(struct mp_config_table *mc,
unsigned char id, const char *bustype);
void smp_write_ioapic(struct mp_config_table *mc,
unsigned char id, unsigned char ver,
unsigned long apicaddr);