powerpc/macintosh/smu.c: Fix closing brace followed by if
A closing brace followed by "if" is almost certainly a mistake. Maybe "else if" was meant, but in this case it doesn't really matter. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Родитель
716821c943
Коммит
2055fb41ea
|
@ -1257,7 +1257,8 @@ static unsigned int smu_fpoll(struct file *file, poll_table *wait)
|
|||
if (pp->busy && pp->cmd.status != 1)
|
||||
mask |= POLLIN;
|
||||
spin_unlock_irqrestore(&pp->lock, flags);
|
||||
} if (pp->mode == smu_file_events) {
|
||||
}
|
||||
if (pp->mode == smu_file_events) {
|
||||
/* Not yet implemented */
|
||||
}
|
||||
return mask;
|
||||
|
|
Загрузка…
Ссылка в новой задаче