diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2016-07-29 18:03:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-20 18:09:22 +0200 |
commit | 4925cf140ff6208894feb0e81984c7f320025f2e (patch) | |
tree | abc058485683df7d07a84bfe15fa786684fa1f2c /drivers/gpu | |
parent | 672138e0ce66e47b33171096dddfe296e948de37 (diff) | |
download | lwn-4925cf140ff6208894feb0e81984c7f320025f2e.tar.gz lwn-4925cf140ff6208894feb0e81984c7f320025f2e.zip |
drm/amdgpu/gmc7: add missing mullins case
commit 7f555c8e5a84b348c2b76f4ca78eae7222354c03 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.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 ea87033bfaf6..df17fababbd6 100644 --- a/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c @@ -167,6 +167,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(); } |