diff options
author | Ondrej Jirman <megous@megous.com> | 2020-02-23 00:51:52 +0100 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2020-10-09 18:16:34 +1030 |
commit | c76eb35587f556f48dc380ce7964e3254cba916d (patch) | |
tree | 1a0f2da78412bce3846450b05f607384f4690228 /drivers/gpu/drm/aspeed | |
parent | 696029eb36c08d7b60097cae44a6269bfa68b51c (diff) |
drm: aspeed: Fix GENMASK misuse
Arguments to GENMASK should be msb >= lsb.
Signed-off-by: Ondrej Jirman <megous@megous.com>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Link: https://patchwork.freedesktop.org/patch/msgid/20200222235152.242816-1-megous@megous.com
Diffstat (limited to 'drivers/gpu/drm/aspeed')
-rw-r--r-- | drivers/gpu/drm/aspeed/aspeed_gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx.h b/drivers/gpu/drm/aspeed/aspeed_gfx.h index e7ca95827ae8..f1e7e56abc02 100644 --- a/drivers/gpu/drm/aspeed/aspeed_gfx.h +++ b/drivers/gpu/drm/aspeed/aspeed_gfx.h @@ -75,7 +75,7 @@ int aspeed_gfx_create_output(struct drm_device *drm); /* CTRL2 */ #define CRT_CTRL_DAC_EN BIT(0) #define CRT_CTRL_VBLANK_LINE(x) (((x) << 20) & CRT_CTRL_VBLANK_LINE_MASK) -#define CRT_CTRL_VBLANK_LINE_MASK GENMASK(20, 31) +#define CRT_CTRL_VBLANK_LINE_MASK GENMASK(31, 20) /* CRT_HORIZ0 */ #define CRT_H_TOTAL(x) (x) |