For the 2nd task (Documentation task), Please Find Attached .txt file also. It is the same .patch file, just different format.
Regards
On Wed, 14 May 2025 at 17:45, Shivam Sharma <10sharmashivam@xxxxxxxxx> wrote:
Dear Shuah Khan,
PFA 2nd task- Documentation task
RegardsOn Wed, 14 May 2025 at 16:45, Shivam Sharma <10sharmashivam@xxxxxxxxx> wrote:Dear Shuah Khan,
I applied for the Linux Kernel Bug Fixing Summer 2025 LFX Internship today, May 13, 2025, and noticed some task deadlines (e.g., May 10) have passed. I’m highly motivated to complete all tasks and contribute to the kernel. And will submit all of them in this email chain. I hope you consider this.
PFA: my first task- Build & boot kernel
Thank you for your guidance. Looking forward to hearing from you.
Best regards,
Shivam Sharma
From 81cf2b74240ca4530c6cf02f063d92d21e5e1780 Mon Sep 17 00:00:00 2001 From: Shivam Sharma <10sharmashivam@xxxxxxxxx> Date: Wed, 14 May 2025 12:07:44 +0000 Subject: [PATCH] docs: fix kernel-doc warning for DC_HDCP_LC_ENABLE_SW_FALLBACK enum The enum DC_HDCP_LC_ENABLE_SW_FALLBACK was missing a colon ':' in its kernel-doc, which caused documentation build warnings. This patch adds the missing colon. Signed-off-by: Shivam Sharma <10sharmashivam@xxxxxxxxx> --- drivers/gpu/drm/amd/include/amd_shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/include/amd_shared.h b/drivers/gpu/drm/amd/include/amd_shared.h index 4c95b885d..c8eccee9b 100644 --- a/drivers/gpu/drm/amd/include/amd_shared.h +++ b/drivers/gpu/drm/amd/include/amd_shared.h @@ -366,7 +366,7 @@ enum DC_DEBUG_MASK { DC_HDCP_LC_FORCE_FW_ENABLE = 0x80000, /** - * @DC_HDCP_LC_ENABLE_SW_FALLBACK If set, upon HDCP Locality Check FW + * @DC_HDCP_LC_ENABLE_SW_FALLBACK: If set, upon HDCP Locality Check FW * path failure, retry using legacy SW path. */ DC_HDCP_LC_ENABLE_SW_FALLBACK = 0x100000, -- 2.49.0