Skip to content

Commit 7d39ef9

Browse files
Shen Lichuanrobclark
authored andcommitted
drm/msm: Fix some typos in comment
Fixed some spelling errors, the details are as follows: -in the code comments: collpase->collapse firwmare->firmware everwhere->everywhere Fixes: 2401a00 ("drm/msm: gpu: Add support for the GPMU") Fixes: 5a903a4 ("drm/msm/a6xx: Introduce GMU wrapper support") Fixes: f97deca ("drm/msm: Support multiple ringbuffers") Signed-off-by: Shen Lichuan <shenlichuan@vivo.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Patchwork: https://patchwork.freedesktop.org/patch/614109/ Signed-off-by: Rob Clark <robdclark@chromium.org>
1 parent 1c96711 commit 7d39ef9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/gpu/drm/msm/adreno/a5xx_power.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ int a5xx_power_init(struct msm_gpu *gpu)
307307
else if (adreno_is_a540(adreno_gpu))
308308
a540_lm_setup(gpu);
309309

310-
/* Set up SP/TP power collpase */
310+
/* Set up SP/TP power collapse */
311311
a5xx_pc_init(gpu);
312312

313313
/* Start the GPMU */

drivers/gpu/drm/msm/adreno/adreno_gpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ int adreno_load_fw(struct adreno_gpu *adreno_gpu)
533533
if (!adreno_gpu->info->fw[i])
534534
continue;
535535

536-
/* Skip loading GMU firwmare with GMU Wrapper */
536+
/* Skip loading GMU firmware with GMU Wrapper */
537537
if (adreno_has_gmu_wrapper(adreno_gpu) && i == ADRENO_FW_GMU)
538538
continue;
539539

drivers/gpu/drm/msm/msm_ringbuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ struct msm_ringbuffer *msm_ringbuffer_new(struct msm_gpu *gpu, int id,
6464
char name[32];
6565
int ret;
6666

67-
/* We assume everwhere that MSM_GPU_RINGBUFFER_SZ is a power of 2 */
67+
/* We assume everywhere that MSM_GPU_RINGBUFFER_SZ is a power of 2 */
6868
BUILD_BUG_ON(!is_power_of_2(MSM_GPU_RINGBUFFER_SZ));
6969

7070
ring = kzalloc(sizeof(*ring), GFP_KERNEL);

0 commit comments

Comments
 (0)