diff options
author | Christian König <christian.koenig@amd.com> | 2013-04-29 10:20:23 +0200 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-05-02 10:09:48 -0400 |
commit | 092fbc4ca29a3d78895673479f794ee162a13ac5 (patch) | |
tree | 58f910ab32440d55a876edcfe90e335309e53dc5 /drivers/gpu/drm/radeon/sid.h | |
parent | 409851f48939dffdd9f19a43830f54eac2c19a53 (diff) | |
download | op-kernel-dev-092fbc4ca29a3d78895673479f794ee162a13ac5.zip op-kernel-dev-092fbc4ca29a3d78895673479f794ee162a13ac5.tar.gz |
drm/radeon: fix UPLL_REF_DIV_MASK definition
Stupid copy & paste error over all generations.
Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/sid.h')
-rw-r--r-- | drivers/gpu/drm/radeon/sid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/sid.h b/drivers/gpu/drm/radeon/sid.h index 042b91d..222877b 100644 --- a/drivers/gpu/drm/radeon/sid.h +++ b/drivers/gpu/drm/radeon/sid.h @@ -36,7 +36,7 @@ # define UPLL_BYPASS_EN_MASK 0x00000004 # define UPLL_CTLREQ_MASK 0x00000008 # define UPLL_VCO_MODE_MASK 0x00000600 -# define UPLL_REF_DIV_MASK 0x001F0000 +# define UPLL_REF_DIV_MASK 0x003F0000 # define UPLL_CTLACK_MASK 0x40000000 # define UPLL_CTLACK2_MASK 0x80000000 #define CG_UPLL_FUNC_CNTL_2 0x638 |