mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
9655ad03af
This fixes up much of the machvec handling, allowing for it to be overloaded on boot. Making practical use of this still requires some Kconfig munging, however. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
14 lines
198 B
C
14 lines
198 B
C
#ifndef _SH_SETUP_H
|
|
#define _SH_SETUP_H
|
|
|
|
#define COMMAND_LINE_SIZE 256
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
int setup_early_printk(char *);
|
|
void sh_mv_setup(void);
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _SH_SETUP_H */
|