Commit 76c48a25 authored by Anton Blanchard's avatar Anton Blanchard

ppc64: fix warning in rtasd.c

parent f1e46d24
......@@ -274,7 +274,7 @@ static int rtasd(void *unused)
return -EINVAL;
}
static void __init rtas_init(void)
static int __init rtas_init(void)
{
struct proc_dir_entry *rtas_dir, *entry;
......@@ -293,6 +293,8 @@ static void __init rtas_init(void)
printk(KERN_ERR "Failed to start RTAS daemon\n");
printk(KERN_ERR "RTAS daemon started\n");
return 0;
}
static int __init surveillance_setup(char *str)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment