drm/radeon: load the right microcode on rs780

Copy/paste error. The RV670 microcode should work ok, so it's
not a show stopper.

Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by Alex Deucher and committed by Dave Airlie 029a2edb 5f3dbedf

+4 -4
+4 -4
drivers/gpu/drm/radeon/r600_cp.c
··· 388 388 DRM_INFO("Loading RS780 CP Microcode\n"); 389 389 for (i = 0; i < PM4_UCODE_SIZE; i++) { 390 390 RADEON_WRITE(R600_CP_ME_RAM_DATA, 391 - RV670_cp_microcode[i][0]); 391 + RS780_cp_microcode[i][0]); 392 392 RADEON_WRITE(R600_CP_ME_RAM_DATA, 393 - RV670_cp_microcode[i][1]); 393 + RS780_cp_microcode[i][1]); 394 394 RADEON_WRITE(R600_CP_ME_RAM_DATA, 395 - RV670_cp_microcode[i][2]); 395 + RS780_cp_microcode[i][2]); 396 396 } 397 397 398 398 RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); 399 399 DRM_INFO("Loading RS780 PFP Microcode\n"); 400 400 for (i = 0; i < PFP_UCODE_SIZE; i++) 401 - RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV670_pfp_microcode[i]); 401 + RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RS780_pfp_microcode[i]); 402 402 } 403 403 RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); 404 404 RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0);