Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 904f7a3f authored by Dave Jones's avatar Dave Jones
Browse files

[CPUFREQ] powernow-k8: clarify number of cores.



Indicate number of processors and cores more cleanly
in startup messages.

Signed-off-by: default avatarMark Langsdorf <mark.langsdorf@amd.com>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 99fbe1ac
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1330,8 +1330,9 @@ static int __cpuinit powernowk8_init(void)

	if (supported_cpus == num_online_cpus()) {
		printk(KERN_INFO PFX "Found %d %s "
			"processors (" VERSION ")\n", supported_cpus,
			boot_cpu_data.x86_model_id);
			"processors (%d cpu cores) (" VERSION ")\n",
			supported_cpus/cpu_data[0].booted_cores,
			boot_cpu_data.x86_model_id, supported_cpus);
		return cpufreq_register_driver(&cpufreq_amd64_driver);
	}