Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/prime: drop unexpected word "the" in the comments

there is an unexpected word "the" in the comments that need to be dropped

file: drivers/gpu/drm/drm_prime.c
line: 842
* of the the buffer described by the provided sg_table.
changed to
* of the buffer described by the provided sg_table.

Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20220621130210.125461-1-jiangjian@cdjrlc.com

authored by

Jiang Jian and committed by
Maxime Ripard
7cd6bb82 7c021558

+1 -1
+1 -1
drivers/gpu/drm/drm_prime.c
··· 839 839 * @sgt: sg_table describing the buffer to check 840 840 * 841 841 * This helper calculates the contiguous size in the DMA address space 842 - * of the the buffer described by the provided sg_table. 842 + * of the buffer described by the provided sg_table. 843 843 * 844 844 * This is useful for implementing 845 845 * &drm_gem_object_funcs.gem_prime_import_sg_table.