diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2012-05-24 22:55:15 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-10 00:36:10 +0900 |
commit | 772605e73b1f07be3736cc3fc0bc0ce0c56db773 (patch) | |
tree | 39731cdcefe7b68be562f8d074e48cdb18bf456f /drivers/gpu/drm | |
parent | 70838c4536517458c38249763311ff56727cd293 (diff) | |
download | linux-3.10-772605e73b1f07be3736cc3fc0bc0ce0c56db773.tar.gz linux-3.10-772605e73b1f07be3736cc3fc0bc0ce0c56db773.tar.bz2 linux-3.10-772605e73b1f07be3736cc3fc0bc0ce0c56db773.zip |
drm/radeon: fix typo in trinity tiling setup
commit 1f73cca799d29df80de3e8f1f1c488485467577a upstream.
Using the wrong union.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/radeon/ni.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c index a48ca53fcd6..2432f9a3485 100644 --- a/drivers/gpu/drm/radeon/ni.c +++ b/drivers/gpu/drm/radeon/ni.c @@ -865,7 +865,7 @@ static void cayman_gpu_init(struct radeon_device *rdev) /* num banks is 8 on all fusion asics. 0 = 4, 1 = 8, 2 = 16 */ if (rdev->flags & RADEON_IS_IGP) - rdev->config.evergreen.tile_config |= 1 << 4; + rdev->config.cayman.tile_config |= 1 << 4; else rdev->config.cayman.tile_config |= ((mc_arb_ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT) << 4; |