mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
drm/radeon/ci: make sure mc ucode is loaded before checking the size
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
This commit is contained in:
parent
8c79bae6a3
commit
bcddee29b0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user