WARN_ON() already contains an unlikely(), so it's not necessary to wrap it
into another.

Signed-off-by: Igor Stoppa <[email protected]>
Cc: Rob Clark <[email protected]>
Cc: David Airlie <[email protected]>
Cc: Archit Taneja <[email protected]>
Cc: Stephane Viau <[email protected]>
---
 drivers/gpu/drm/msm/disp/mdp5/mdp5_ctl.c | 4 ++--
 drivers/gpu/drm/msm/disp/mdp_format.c    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/msm/disp/mdp5/mdp5_ctl.c 
b/drivers/gpu/drm/msm/disp/mdp5/mdp5_ctl.c
index f93d5681267c..9e0b3730536d 100644
--- a/drivers/gpu/drm/msm/disp/mdp5/mdp5_ctl.c
+++ b/drivers/gpu/drm/msm/disp/mdp5/mdp5_ctl.c
@@ -261,7 +261,7 @@ int mdp5_ctl_set_cursor(struct mdp5_ctl *ctl, struct 
mdp5_pipeline *pipeline,
        u32 blend_cfg;
        struct mdp5_hw_mixer *mixer = pipeline->mixer;
 
-       if (unlikely(WARN_ON(!mixer))) {
+       if (WARN_ON(!mixer)) {
                dev_err(ctl_mgr->dev->dev, "CTL %d cannot find LM",
                        ctl->id);
                return -EINVAL;
@@ -703,7 +703,7 @@ struct mdp5_ctl_manager *mdp5_ctlm_init(struct drm_device 
*dev,
                goto fail;
        }
 
-       if (unlikely(WARN_ON(ctl_cfg->count > MAX_CTL))) {
+       if (WARN_ON(ctl_cfg->count > MAX_CTL)) {
                dev_err(dev->dev, "Increase static pool size to at least %d\n",
                                ctl_cfg->count);
                ret = -ENOSPC;
diff --git a/drivers/gpu/drm/msm/disp/mdp_format.c 
b/drivers/gpu/drm/msm/disp/mdp_format.c
index 005760bee708..005f24dcfbdd 100644
--- a/drivers/gpu/drm/msm/disp/mdp_format.c
+++ b/drivers/gpu/drm/msm/disp/mdp_format.c
@@ -185,7 +185,7 @@ const struct msm_format *mdp_get_format(struct msm_kms 
*kms, uint32_t format,
 
 struct csc_cfg *mdp_get_default_csc_cfg(enum csc_type type)
 {
-       if (unlikely(WARN_ON(type >= CSC_MAX)))
+       if (WARN_ON(type >= CSC_MAX))
                return NULL;
 
        return &csc_convert[type];
-- 
2.17.1

Reply via email to