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:
Rasmus Villemoes 2014-06-20 21:44:27 +02:00 коммит произвёл Benjamin Herrenschmidt
Родитель 716821c943
Коммит 2055fb41ea
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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;