diff options
author | Thierry Reding <treding@nvidia.com> | 2014-02-25 15:04:06 +0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-06-06 01:09:17 +0400 |
commit | eba66501ac41b717d60bebc6f9ae0f3195c6c422 (patch) | |
tree | 5d5b05e9f6ecb263aa0a835173185be3d9bdec8b /drivers/gpu/drm/tegra/dc.h | |
parent | a82752e19954cb741a7a582482e5c05c50d7acd3 (diff) | |
download | linux-eba66501ac41b717d60bebc6f9ae0f3195c6c422.tar.xz |
drm/tegra: dc - Rename INVERT_V to V_DIRECTION
V_DIRECTION is the name of the field in the documentation, so use that
for consistency. Also add the H_DIRECTION field for completeness.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/dc.h')
-rw-r--r-- | drivers/gpu/drm/tegra/dc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/dc.h b/drivers/gpu/drm/tegra/dc.h index c94101494826..44e31aefe899 100644 --- a/drivers/gpu/drm/tegra/dc.h +++ b/drivers/gpu/drm/tegra/dc.h @@ -312,7 +312,8 @@ #define DC_WIN_CSC_KVB 0x618 #define DC_WIN_WIN_OPTIONS 0x700 -#define INVERT_V (1 << 2) +#define H_DIRECTION (1 << 0) +#define V_DIRECTION (1 << 2) #define COLOR_EXPAND (1 << 6) #define CSC_ENABLE (1 << 18) #define WIN_ENABLE (1 << 30) |