Skip to content

Commit

Permalink
drm/exynos: rename s/HDMI_OVERLAY_NUMBER/MIXER_WIN_NR
Browse files Browse the repository at this point in the history
HDMI_OVERLAY_NUMBER is specific of mixer driver and be used "windows
layer" term in exynos user manaual, so rename it.

Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
  • Loading branch information
Joonyoung Shim authored and Inki Dae committed Apr 12, 2012
1 parent 46da222 commit a634dd5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/gpu/drm/exynos/exynos_mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "exynos_drm_drv.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))

Expand Down Expand Up @@ -81,7 +81,7 @@ struct mixer_context {
bool interlace;

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[] = {
Expand Down Expand Up @@ -642,7 +642,7 @@ static void mixer_win_mode_set(void *ctx,
if (win == DEFAULT_ZPOS)
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);
return;
}
Expand Down Expand Up @@ -682,7 +682,7 @@ static void mixer_win_commit(void *ctx, int zpos)
if (win == DEFAULT_ZPOS)
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);
return;
}
Expand All @@ -705,7 +705,7 @@ static void mixer_win_disable(void *ctx, int zpos)
if (win == DEFAULT_ZPOS)
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);
return;
}
Expand Down

0 comments on commit a634dd5

Please sign in to comment.