mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 00:53:40 +00:00
07cdb78436
This patch fixes the following sparse warning: <<<<<<<< arch/mips/kernel/early_printk.c:35:13: warning: symbol 'setup_early_printk' was not declared. Should it be static? <<<<<<<< The fix is to define a prototype of the setup_early_printk() function and to include the appropriate header into arch/mips/kernel/early_printk.c. [Ralf: Sorted includes again] Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
9 lines
138 B
C
9 lines
138 B
C
#ifndef _MIPS_SETUP_H
|
|
#define _MIPS_SETUP_H
|
|
|
|
#define COMMAND_LINE_SIZE 256
|
|
|
|
extern void setup_early_printk(void);
|
|
|
|
#endif /* __SETUP_H */
|