From: Matthew Maurer Date: Tue, 15 Oct 2024 23:16:46 +0000 (+0000) Subject: module: Reformat struct for code style X-Git-Tag: v6.13-rc1~59^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2295cf87ed5a6da4564034e4f8ebcce0a0a021ed;p=thirdparty%2Fkernel%2Flinux.git module: Reformat struct for code style Using commas to declare struct members makes adding new members to this struct not as nice with patch management. Test results linux-modules-kpd succeed [0]. Signed-off-by: Matthew Maurer Reviewed-by: Sami Tolvanen [mcgrof: add automated test results from kdevops using KPD ] Link: https://github.com/linux-kdevops/linux-modules-kpd/actions/runs/11420095343 # [0] Signed-off-by: Luis Chamberlain --- diff --git a/kernel/module/internal.h b/kernel/module/internal.h index 2ebece8a789f5..daef2be839022 100644 --- a/kernel/module/internal.h +++ b/kernel/module/internal.h @@ -80,7 +80,12 @@ struct load_info { unsigned int used_pages; #endif struct { - unsigned int sym, str, mod, vers, info, pcpu; + unsigned int sym; + unsigned int str; + unsigned int mod; + unsigned int vers; + unsigned int info; + unsigned int pcpu; } index; };