projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c79bae
)
drm/radeon/ci: make sure mc ucode is loaded before checking the size
author
Alex Deucher
<alexdeucher@gmail.com>
Wed, 16 Apr 2014 13:42:23 +0000
(09:42 -0400)
committer
Christian König
<christian.koenig@amd.com>
Thu, 17 Apr 2014 12:14:43 +0000
(14:14 +0200)
Avoid a possible segfault.
Noticed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/radeon/cik.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/radeon/cik.c
b/drivers/gpu/drm/radeon/cik.c
index 7e430450bac0ede02ea8a590ca23ad9034264a55..199eb194716f83b64aa7c3850d30606f4ba3f053 100644
(file)
--- a/
drivers/gpu/drm/radeon/cik.c
+++ b/
drivers/gpu/drm/radeon/cik.c
@@
-1705,11
+1705,13
@@
int ci_mc_load_microcode(struct radeon_device *rdev)
const __be32 *fw_data;
u32 running, blackout = 0;
u32 *io_mc_regs;
- int i, regs_size, ucode_size
= rdev->mc_fw->size / 4
;
+ int i, regs_size, ucode_size;
if (!rdev->mc_fw)
return -EINVAL;
+ ucode_size = rdev->mc_fw->size / 4;
+
switch (rdev->family) {
case CHIP_BONAIRE:
io_mc_regs = (u32 *)&bonaire_io_mc_regs;