diff options
author | Alex Deucher <[email protected]> | 2013-10-28 10:56:23 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2013-11-01 15:25:49 -0400 |
commit | d5693761b2b4ff530c8af8af9ec55b6eae76e617 (patch) | |
tree | b13dca8d53f885279ffa3f0911948472b512cc23 | |
parent | 6ba81e538a786281a9650efd14c6a194f35bde04 (diff) |
drm/radeon/si: fix define for MC_SEQ_TRAIN_WAKEUP_CNTL
Typo in the register offset.
Noticed-by: Sylvain BERTRAND <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Cc: [email protected]
-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 307ffdfd644c..5691a7c30686 100644 --- a/drivers/gpu/drm/radeon/sid.h +++ b/drivers/gpu/drm/radeon/sid.h @@ -478,7 +478,7 @@ #define STATE3_MASK (0x1f << 15) #define STATE3_SHIFT 15 -#define MC_SEQ_TRAIN_WAKEUP_CNTL 0x2808 +#define MC_SEQ_TRAIN_WAKEUP_CNTL 0x28e8 #define TRAIN_DONE_D0 (1 << 30) #define TRAIN_DONE_D1 (1 << 31) |