Staging: asus_oled: fixed warning 'default case should have 'break'.

This patch fixes the warning about switch case found by checkpatch.pl
in driver asus_oled.

Signed-off-by: Tülin İzer <tulinizer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tülin İzer 2013-05-12 15:57:11 +03:00 коммит произвёл Greg Kroah-Hartman
Родитель f722406faa
Коммит 44eeccc054
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -401,7 +401,7 @@ static int append_values(struct asus_oled_dev *odev, uint8_t val, size_t count)
default:
/* cannot get here; stops gcc complaining*/
;
break;
}
odev->buf_offs++;