summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/arm/display/include/malidp_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/arm/display/include/malidp_utils.h')
-rw-r--r--drivers/gpu/drm/arm/display/include/malidp_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/arm/display/include/malidp_utils.h b/drivers/gpu/drm/arm/display/include/malidp_utils.h
index 49a1d7f3539c..9f83baac6ed8 100644
--- a/drivers/gpu/drm/arm/display/include/malidp_utils.h
+++ b/drivers/gpu/drm/arm/display/include/malidp_utils.h
@@ -35,7 +35,7 @@ static inline void set_range(struct malidp_range *rg, u32 start, u32 end)
rg->end = end;
}
-static inline bool in_range(struct malidp_range *rg, u32 v)
+static inline bool malidp_in_range(struct malidp_range *rg, u32 v)
{
return (v >= rg->start) && (v <= rg->end);
}