blob: 586a9711a75dbec4ef86557fef94a71cc26e03ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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 */
|