提交 d2197e1e 编写于 作者: T Tony Lindgren

omap3: Fix compile for Touch Book early_param

Commit 2b0d8c25 changed ARM to use
the common early_param code. Fix compile for Touch Book accordingly.
Signed-off-by: NTony Lindgren <tony@atomide.com>
上级 57d54889
...@@ -518,14 +518,14 @@ static void omap3_touchbook_poweroff(void) ...@@ -518,14 +518,14 @@ static void omap3_touchbook_poweroff(void)
gpio_direction_output(TB_KILL_POWER_GPIO, 0); gpio_direction_output(TB_KILL_POWER_GPIO, 0);
} }
static void __init early_touchbook_revision(char **p) static int __init early_touchbook_revision(char *p)
{ {
if (!*p) if (!p)
return; return 0;
strict_strtoul(*p, 10, &touchbook_revision); return strict_strtoul(p, 10, &touchbook_revision);
} }
__early_param("tbr=", early_touchbook_revision); early_param("tbr", early_touchbook_revision);
static struct omap_musb_board_data musb_board_data = { static struct omap_musb_board_data musb_board_data = {
.interface_type = MUSB_INTERFACE_ULPI, .interface_type = MUSB_INTERFACE_ULPI,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册