diff options
author | Tülin İzer <tulinizer@gmail.com> | 2013-05-12 15:57:11 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-12 08:27:42 -0700 |
commit | 44eeccc054909fd47e6a6cd55eba05a985396177 (patch) | |
tree | 176397df57e0bfb0e322db323a7bf6c39061450d /drivers | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/asus_oled/asus_oled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/asus_oled/asus_oled.c b/drivers/staging/asus_oled/asus_oled.c index d0a5a28a8fe2..6ff01464c2bc 100644 --- a/drivers/staging/asus_oled/asus_oled.c +++ b/drivers/staging/asus_oled/asus_oled.c @@ -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++; |