diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-09-26 12:50:54 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2018-09-26 12:50:54 -0400 |
commit | 7c968791f7753bf0e52a21729498509ea3dd751b (patch) | |
tree | 3dc06e9af11083b0f88006f515f8d6bdebec519b | |
parent | 676709b1bcb513c6acf0bb7698dffcc53c2a8970 (diff) |
video/fbdev/stifb: Fix spelling mistake in fall-through annotation
Replace "fall though" with a proper "fall through" annotation.
This fix is part of the ongoing efforts to enabling
-Wimplicit-fallthrough
Addresses-Coverity-ID: 402013 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Cc: "James E.J. Bottomley" <jejb@parisc-linux.org>
Cc: Helge Deller <deller@gmx.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
-rw-r--r-- | drivers/video/fbdev/stifb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/stifb.c b/drivers/video/fbdev/stifb.c index 045e8afe398b..9e88e3f594c2 100644 --- a/drivers/video/fbdev/stifb.c +++ b/drivers/video/fbdev/stifb.c | |||
@@ -1157,7 +1157,7 @@ static int __init stifb_init_fb(struct sti_struct *sti, int bpp_pref) | |||
1157 | dev_name); | 1157 | dev_name); |
1158 | goto out_err0; | 1158 | goto out_err0; |
1159 | } | 1159 | } |
1160 | /* fall though */ | 1160 | /* fall through */ |
1161 | case S9000_ID_ARTIST: | 1161 | case S9000_ID_ARTIST: |
1162 | case S9000_ID_HCRX: | 1162 | case S9000_ID_HCRX: |
1163 | case S9000_ID_TIMBER: | 1163 | case S9000_ID_TIMBER: |