Commit feab1914 authored by Florian Fainelli's avatar Florian Fainelli Committed by Thomas Bogendoerfer
Browse files

MIPS: Alchemy: Fix missing prototypes



We have a number of missing prototypes warnings for board_setup(),
alchemy_set_lpj() and prom_init_cmdline(), prom_getenv() and
prom_get_ethernet_addr(). Fix those by providing definitions for the
first two functions in au1000.h which is included everywhere relevant,
and including prom.h for the last three.

Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 0dd20a48
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@
#include <linux/string.h>

#include <asm/bootinfo.h>
#include <prom.h>

int prom_argc;
char **prom_argv;
+1 −3
Original line number Diff line number Diff line
@@ -30,13 +30,11 @@
#include <linux/mm.h>
#include <linux/dma-map-ops.h> /* for dma_default_coherent */

#include <asm/bootinfo.h>
#include <asm/mipsregs.h>

#include <au1000.h>

extern void __init board_setup(void);
extern void __init alchemy_set_lpj(void);

static bool alchemy_dma_coherent(void)
{
	switch (alchemy_get_cputype()) {
+3 −0
Original line number Diff line number Diff line
@@ -597,6 +597,9 @@

#include <asm/cpu.h>

void alchemy_set_lpj(void);
void board_setup(void);

/* helpers to access the SYS_* registers */
static inline unsigned long alchemy_rdsys(int regofs)
{