Commit a634dd54 authored by Joonyoung Shim's avatar Joonyoung Shim Committed by Inki Dae

drm/exynos: rename s/HDMI_OVERLAY_NUMBER/MIXER_WIN_NR

HDMI_OVERLAY_NUMBER is specific of mixer driver and be used "windows
layer" term in exynos user manaual, so rename it.
Signed-off-by: default avatarJoonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent 46da222b
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include "exynos_drm_drv.h" #include "exynos_drm_drv.h"
#include "exynos_drm_hdmi.h" #include "exynos_drm_hdmi.h"
#define HDMI_OVERLAY_NUMBER 3 #define MIXER_WIN_NR 3
#define get_mixer_context(dev) platform_get_drvdata(to_platform_device(dev)) #define get_mixer_context(dev) platform_get_drvdata(to_platform_device(dev))
...@@ -81,7 +81,7 @@ struct mixer_context { ...@@ -81,7 +81,7 @@ struct mixer_context {
bool interlace; bool interlace;
struct mixer_resources mixer_res; struct mixer_resources mixer_res;
struct hdmi_win_data win_data[HDMI_OVERLAY_NUMBER]; struct hdmi_win_data win_data[MIXER_WIN_NR];
}; };
static const u8 filter_y_horiz_tap8[] = { static const u8 filter_y_horiz_tap8[] = {
...@@ -642,7 +642,7 @@ static void mixer_win_mode_set(void *ctx, ...@@ -642,7 +642,7 @@ static void mixer_win_mode_set(void *ctx,
if (win == DEFAULT_ZPOS) if (win == DEFAULT_ZPOS)
win = mixer_ctx->default_win; win = mixer_ctx->default_win;
if (win < 0 || win > HDMI_OVERLAY_NUMBER) { if (win < 0 || win > MIXER_WIN_NR) {
DRM_ERROR("overlay plane[%d] is wrong\n", win); DRM_ERROR("overlay plane[%d] is wrong\n", win);
return; return;
} }
...@@ -682,7 +682,7 @@ static void mixer_win_commit(void *ctx, int zpos) ...@@ -682,7 +682,7 @@ static void mixer_win_commit(void *ctx, int zpos)
if (win == DEFAULT_ZPOS) if (win == DEFAULT_ZPOS)
win = mixer_ctx->default_win; win = mixer_ctx->default_win;
if (win < 0 || win > HDMI_OVERLAY_NUMBER) { if (win < 0 || win > MIXER_WIN_NR) {
DRM_ERROR("overlay plane[%d] is wrong\n", win); DRM_ERROR("overlay plane[%d] is wrong\n", win);
return; return;
} }
...@@ -705,7 +705,7 @@ static void mixer_win_disable(void *ctx, int zpos) ...@@ -705,7 +705,7 @@ static void mixer_win_disable(void *ctx, int zpos)
if (win == DEFAULT_ZPOS) if (win == DEFAULT_ZPOS)
win = mixer_ctx->default_win; win = mixer_ctx->default_win;
if (win < 0 || win > HDMI_OVERLAY_NUMBER) { if (win < 0 || win > MIXER_WIN_NR) {
DRM_ERROR("overlay plane[%d] is wrong\n", win); DRM_ERROR("overlay plane[%d] is wrong\n", win);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment