Commit 98f0db7a authored by Linus Torvalds's avatar Linus Torvalds

Trivial compile fix

parent 099445b4
...@@ -76,7 +76,7 @@ static struct tasklet_struct rtc_tq; ...@@ -76,7 +76,7 @@ static struct tasklet_struct rtc_tq;
static int static int
rtctimer_open(snd_timer_t *t) rtctimer_open(snd_timer_t *t)
{ {
err = rtc_register(&rtc_task); int err = rtc_register(&rtc_task);
if (err < 0) if (err < 0)
return err; return err;
t->private_data = &rtc_task; t->private_data = &rtc_task;
......
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