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

RAS/AMD/ATL: Add amd_atl pr_fmt() prefix

Prefix all AMD ATL pr_* statements with "amd_atl:".

Signed-off-by: John Allen <john.allen@amd.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/20240606203313.51197-2-john.allen@amd.com

authored by

John Allen and committed by
Borislav Petkov (AMD)
efdbe82a dadc295c

+4 -1
+3
drivers/ras/amd/atl/internal.h
··· 21 21 22 22 #include "reg_fields.h" 23 23 24 + #undef pr_fmt 25 + #define pr_fmt(fmt) "amd_atl: " fmt 26 + 24 27 /* Maximum possible number of Coherent Stations within a single Data Fabric. */ 25 28 #define MAX_COH_ST_CHANNELS 32 26 29
+1 -1
drivers/ras/amd/atl/system.c
··· 273 273 int get_df_system_info(void) 274 274 { 275 275 if (determine_df_rev()) { 276 - pr_warn("amd_atl: Failed to determine DF Revision"); 276 + pr_warn("Failed to determine DF Revision"); 277 277 df_cfg.rev = UNKNOWN; 278 278 return -EINVAL; 279 279 }