fbdev: udlfb: Remove redundant initialization to variable identical
The variable identical is being initialized with a value that is never read. The variable is being re-assigned later on. The initialization is redundant and can be removed. Cleans up clang scan-build warning: drivers/video/fbdev/udlfb.c:373:6: warning: Value stored to 'identical' during its initialization is never read [deadcode.DeadStores] Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
e8bc52cb8d
commit
5994521688
|
@ -370,7 +370,7 @@ static int dlfb_trim_hline(const u8 *bback, const u8 **bfront, int *width_bytes)
|
|||
const unsigned long *back = (const unsigned long *) bback;
|
||||
const unsigned long *front = (const unsigned long *) *bfront;
|
||||
const int width = *width_bytes / sizeof(unsigned long);
|
||||
int identical = width;
|
||||
int identical;
|
||||
int start = width;
|
||||
int end = width;
|
||||
|
||||
|
|
Loading…
Reference in New Issue