diff options
| author | Swetha Chikkaboraiah <schikk@codeaurora.org> | 2020-03-02 10:55:12 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-05-21 23:57:59 -0700 |
| commit | 6dbab77b6ddda309f56027f135f1eede33b76c2c (patch) | |
| tree | 1d6202db5896c0cd90b44962678ebfafec402362 /drivers/video/fbdev | |
| parent | 5a6566f225652a01f17f062b4fa91f269e49014a (diff) | |
kernel: Fix build errors with LLVM
This patch intends to fix compilation errors
while building kernel with LLVM toolchain.
Change-Id: I76c4f97d8a0efb44434d54fb07cae23b050d2003
Signed-off-by: Swetha Chikkaboraiah <schikk@codeaurora.org>
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/msm/dsi_status_6g.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/msm/dsi_status_6g.c b/drivers/video/fbdev/msm/dsi_status_6g.c index d24b19ea77ad..8a962efcf2f0 100644 --- a/drivers/video/fbdev/msm/dsi_status_6g.c +++ b/drivers/video/fbdev/msm/dsi_status_6g.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017, The Linux Foundation. All rights reserved. +/* Copyright (c) 2013-2017, 2020, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and @@ -168,7 +168,7 @@ void mdss_check_dsi_ctrl_status(struct work_struct *work, uint32_t interval) if ((mipi->mode == DSI_CMD_MODE) && !ctrl_pdata->burst_mode_enabled) mutex_unlock(&mdp5_data->ov_lock); - if ((pstatus_data->mfd->panel_power_state == MDSS_PANEL_POWER_ON)) { + if (pstatus_data->mfd->panel_power_state == MDSS_PANEL_POWER_ON) { if (ret > 0) schedule_delayed_work(&pstatus_data->check_status, msecs_to_jiffies(interval)); |
