diff options
Diffstat (limited to 'arch/x86/lib/cmdline.c')
| -rw-r--r-- | arch/x86/lib/cmdline.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c index b6da09339308..80570eb3c89b 100644 --- a/arch/x86/lib/cmdline.c +++ b/arch/x86/lib/cmdline.c @@ -7,16 +7,18 @@  #include <linux/string.h>  #include <linux/ctype.h>  #include <asm/setup.h> +#include <asm/cmdline.h>  static inline int myisspace(u8 c)  {  	return c <= ' ';	/* Close enough approximation */  } -/** +/*   * Find a boolean option (like quiet,noapic,nosmp....)   *   * @cmdline: the cmdline string + * @max_cmdline_size: the maximum size of cmdline   * @option: option string to look for   *   * Returns the position of that @option (starts counting with 1)  |