Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44eeccc0 authored by Tülin İzer's avatar Tülin İzer Committed by Greg Kroah-Hartman
Browse files

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: default avatarTülin İzer <tulinizer@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f722406f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -401,7 +401,7 @@ static int append_values(struct asus_oled_dev *odev, uint8_t val, size_t count)


		default:
		default:
			/* cannot get here; stops gcc complaining*/
			/* cannot get here; stops gcc complaining*/
			;
			break;
		}
		}


		odev->buf_offs++;
		odev->buf_offs++;