diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2016-07-29 18:03:42 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-08-01 11:24:57 -0400 |
commit | 7f555c8e5a84b348c2b76f4ca78eae7222354c03 (patch) | |
tree | 4a9c2b699aeb3ac888a0690c5c0f188220d7e301 /drivers/gpu | |
parent | 1cf915d305b6e1d57db6c35c208016f9747ba3c6 (diff) | |
download | op-kernel-dev-7f555c8e5a84b348c2b76f4ca78eae7222354c03.zip op-kernel-dev-7f555c8e5a84b348c2b76f4ca78eae7222354c03.tar.gz |
drm/amdgpu/gmc7: add missing mullins case
Looks like this got missed when we ported the code from radeon.
Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c b/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c index d24a82b..0b0f086 100644 --- a/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c @@ -144,6 +144,7 @@ static int gmc_v7_0_init_microcode(struct amdgpu_device *adev) break; case CHIP_KAVERI: case CHIP_KABINI: + case CHIP_MULLINS: return 0; default: BUG(); } |