diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2023-04-19 12:39:56 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-05-12 16:36:44 +0000 |
commit | eabae5a6812ad1ac2c6bf8f3b86f7d734346d147 (patch) | |
tree | f22832f0facef534b7281fb04a8b9e186922f070 /src/soc/qualcomm/sc7180/display/disp.c | |
parent | 830be4d3ea5c942b92d89a5ac3bd906af93d2b49 (diff) |
soc/qualcomm/sc7180: Fix set but unused variables
This fixes clang warnings.
Change-Id: I407da6ec05ef646f61bd81e314fee1b5ea659192
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74557
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/qualcomm/sc7180/display/disp.c')
-rw-r--r-- | src/soc/qualcomm/sc7180/display/disp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/soc/qualcomm/sc7180/display/disp.c b/src/soc/qualcomm/sc7180/display/disp.c index 4ee6bec4ac..5083165e73 100644 --- a/src/soc/qualcomm/sc7180/display/disp.c +++ b/src/soc/qualcomm/sc7180/display/disp.c @@ -7,9 +7,7 @@ void mdss_intf_tg_setup(struct edid *edid) { uint32_t hsync_period, vsync_period, hsync_start_x, hsync_end_x; uint32_t display_hctl, hsync_ctl, display_vstart, display_vend; - uint32_t mdss_version; - mdss_version = read32(&mdss_hw->hw_version); hsync_period = edid->mode.ha + edid->mode.hbl; vsync_period = edid->mode.va + edid->mode.vbl; hsync_start_x = edid->mode.hbl - edid->mode.hso; |