Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 86c10c56 authored by Srinivasan Shanmugam's avatar Srinivasan Shanmugam Committed by Sasha Levin
Browse files

drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of atom_get_src_int()



[ Upstream commit 7cf1ad2fe10634238b38442a851d89514cb14ea2 ]

Missing break statement in the ATOM_ARG_IMM case of a switch statement,
adds the missing break statement, ensuring that the program's control
flow is as intended.

Fixes the below:
drivers/gpu/drm/amd/amdgpu/atom.c:323 atom_get_src_int() warn: ignoring unreachable code.

Fixes: d38ceaf9 ("drm/amdgpu: add core driver (v4)")
Cc: Jammy Zhou <Jammy.Zhou@amd.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarSrinivasan Shanmugam <srinivasan.shanmugam@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 23d57b99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ static uint32_t atom_get_src_int(atom_exec_context *ctx, uint8_t attr,
				DEBUG("IMM 0x%02X\n", val);
			return val;
		}
		return 0;
		break;
	case ATOM_ARG_PLL:
		idx = U8(*ptr);
		(*ptr)++;