[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 06/13] display/pxa2xx_lcd: Remove redundant statement in pxa2xx_p
From: |
kuhn.chenqun |
Subject: |
[PATCH 06/13] display/pxa2xx_lcd: Remove redundant statement in pxa2xx_palette_parse() |
Date: |
Tue, 25 Feb 2020 10:09:30 +0800 |
From: Chen Qun <address@hidden>
Clang static code analyzer show warning:
hw/display/pxa2xx_lcd.c:596:9: warning: Value stored to 'format' is never read
format = 0;
^ ~
Reported-by: Euler Robot <address@hidden>
Signed-off-by: Chen Qun <address@hidden>
---
Cc: Andrzej Zaborowski <address@hidden>
Cc: Peter Maydell <address@hidden>
Cc: address@hidden
---
hw/display/pxa2xx_lcd.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/hw/display/pxa2xx_lcd.c b/hw/display/pxa2xx_lcd.c
index 05f5f84671..464e93161a 100644
--- a/hw/display/pxa2xx_lcd.c
+++ b/hw/display/pxa2xx_lcd.c
@@ -593,7 +593,6 @@ static void pxa2xx_palette_parse(PXA2xxLCDState *s, int ch,
int bpp)
n = 256;
break;
default:
- format = 0;
return;
}
--
2.23.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH 06/13] display/pxa2xx_lcd: Remove redundant statement in pxa2xx_palette_parse(),
kuhn.chenqun <=