AMD Northbridge LX: make GeodeLinkSpeed() function prototype non-static
Change-Id: Id914be1ae4dac96c51f2640f056af4ce58a248eb Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-on: http://review.coreboot.org/3364 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
6f9f785d9b
commit
194ec4d4d5
|
@ -29,4 +29,7 @@ int sizeram(void);
|
||||||
/* northbridgeinit.c */
|
/* northbridgeinit.c */
|
||||||
void northbridge_init_early(void);
|
void northbridge_init_early(void);
|
||||||
uint32_t get_systop(void);
|
uint32_t get_systop(void);
|
||||||
|
|
||||||
|
/* pll_reset.c */
|
||||||
|
unsigned int GeodeLinkSpeed(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "northbridge.h"
|
||||||
|
|
||||||
static void pll_reset(void)
|
static void pll_reset(void)
|
||||||
{
|
{
|
||||||
msr_t msrGlcpSysRstpll;
|
msr_t msrGlcpSysRstpll;
|
||||||
|
@ -82,7 +84,7 @@ static unsigned int CPUSpeed(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static unsigned int GeodeLinkSpeed(void)
|
unsigned int GeodeLinkSpeed(void)
|
||||||
{
|
{
|
||||||
unsigned int speed;
|
unsigned int speed;
|
||||||
msr_t msr;
|
msr_t msr;
|
||||||
|
|
Loading…
Reference in New Issue