Commit d045c315 authored by Pratyush Brahma's avatar Pratyush Brahma Committed by Mike Rapoport (Microsoft)
Browse files

mm/numa_memblks: Use pr_debug instead of printk(KERN_DEBUG)



Replace the direct usage of printk(KERN_DEBUG ...) with pr_debug(...) to
align with the consistent `pr_*` API usage within the file.

Reviewed-by: default avatarJoshua Hahn <joshua.hahnjy@gmail.com>
Signed-off-by: default avatarPratyush Brahma <pratyush.brahma@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250813-numa-dbg-v3-1-1dcd1234fcc5@oss.qualcomm.com


Signed-off-by: default avatarMike Rapoport (Microsoft) <rppt@kernel.org>
parent 8f5ae30d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ static int __init numa_alloc_distance(void)
		for (j = 0; j < cnt; j++)
			numa_distance[i * cnt + j] = i == j ?
				LOCAL_DISTANCE : REMOTE_DISTANCE;
	printk(KERN_DEBUG "NUMA: Initialized distance table, cnt=%d\n", cnt);
	pr_debug("NUMA: Initialized distance table, cnt=%d\n", cnt);

	return 0;
}