Commit b0fe3d39 authored by Alex Deucher's avatar Alex Deucher

drm/radeon: fix typo in cik_select_se_sh()

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ba19031a
...@@ -1738,7 +1738,7 @@ static void cik_select_se_sh(struct radeon_device *rdev, ...@@ -1738,7 +1738,7 @@ static void cik_select_se_sh(struct radeon_device *rdev,
u32 data = INSTANCE_BROADCAST_WRITES; u32 data = INSTANCE_BROADCAST_WRITES;
if ((se_num == 0xffffffff) && (sh_num == 0xffffffff)) if ((se_num == 0xffffffff) && (sh_num == 0xffffffff))
data = SH_BROADCAST_WRITES | SE_BROADCAST_WRITES; data |= SH_BROADCAST_WRITES | SE_BROADCAST_WRITES;
else if (se_num == 0xffffffff) else if (se_num == 0xffffffff)
data |= SE_BROADCAST_WRITES | SH_INDEX(sh_num); data |= SE_BROADCAST_WRITES | SH_INDEX(sh_num);
else if (sh_num == 0xffffffff) else if (sh_num == 0xffffffff)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment