sparc32: fix sparse warning in devices.c
Fix following warning: devices.c:114:13: warning: symbol 'device_scan' was not declared. Should it be static? Add prototype to asm/setup.h Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd250a664d
commit
8885ec7ca9
|
@ -39,6 +39,9 @@ int sparc_floppy_request_irq(unsigned int irq, irq_handler_t irq_handler);
|
|||
/* setup_32.c */
|
||||
extern unsigned long cmdline_memory_size;
|
||||
|
||||
/* devices.c */
|
||||
void __init device_scan(void);
|
||||
|
||||
#endif
|
||||
|
||||
extern void sun_do_break(void);
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include <asm/smp.h>
|
||||
#include <asm/cpudata.h>
|
||||
#include <asm/cpu_type.h>
|
||||
#include <asm/setup.h>
|
||||
|
||||
extern void clock_stop_probe(void); /* tadpole.c */
|
||||
|
||||
|
|
|
@ -248,8 +248,6 @@ unsigned long __init bootmem_init(unsigned long *pages_avail)
|
|||
* init routine based upon the Sun model type on the Sparc.
|
||||
*
|
||||
*/
|
||||
extern void device_scan(void);
|
||||
|
||||
void __init paging_init(void)
|
||||
{
|
||||
srmmu_paging_init();
|
||||
|
|
Loading…
Reference in New Issue