From: Kuan-Wei Chiu Date: Thu, 28 Aug 2025 19:19:54 +0000 (+0800) Subject: EDAC: Fix wrong executable file modes for C source files X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=71965cae7db394ff5ba3b2d2befe4e136ceec268;p=users%2Fhch%2Fmisc.git EDAC: Fix wrong executable file modes for C source files Three EDAC source files were mistakenly marked as executable when adding the EDAC scrub controls. These are plain C source files and should not carry the executable bit. Correcting their modes follows the principle of least privilege and avoids unnecessary execute permissions in the repository. [ bp: Massage commit message. ] Signed-off-by: Kuan-Wei Chiu Signed-off-by: Borislav Petkov (AMD) Link: https://lore.kernel.org/20250828191954.903125-1-visitorckw@gmail.com --- diff --git a/drivers/edac/ecs.c b/drivers/edac/ecs.c old mode 100755 new mode 100644 diff --git a/drivers/edac/mem_repair.c b/drivers/edac/mem_repair.c old mode 100755 new mode 100644 diff --git a/drivers/edac/scrub.c b/drivers/edac/scrub.c old mode 100755 new mode 100644