diff options
'>Diffstat (limited to 'sys-kernel/boest-v4.17.15/0006-Disable-CONFIG_PROCESSOR_SELECT-printk-s.patch')
--rw-r--r-- | sys-kernel/boest-v4.17.15/0006-Disable-CONFIG_PROCESSOR_SELECT-printk-s.patch | 4545 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sys-kernel/boest-v4.17.15/0006-Disable-CONFIG_PROCESSOR_SELECT-printk-s.patch b/ b/sys-kernel/boest-v4.17.15/0006-Disable-CONFIG_PROCESSOR_SELECT-printk-s.patch new file mode 100644 index 00000000..05173549 --- /dev/null +++ b/sys-kernel/boest-v4.17.15/0006-Disable-CONFIG_PROCESSOR_SELECT-printk-s.patch @@ -0,0 +1,45 @@ +From 8dd32e880b0c56ebe2a1446aa1e2262de0140794 Mon Sep 17 00:00:00 2001 +From: Bertrand Jacquin <bertrand@jacquin.bzh> +Date: Wed, 9 Jan 2013 00:28:28 +0100 +Subject: [PATCH 06/16] Disable CONFIG_PROCESSOR_SELECT printk()'s + +Signed-off-by: Bertrand Jacquin <bertrand@jacquin.bzh> +--- + arch/x86/kernel/cpu/common.c | 17 ----------------- + 1 file changed, 17 deletions(-) + +diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c +index 6c54d8b0e5dc..9f117fb17a00 100644 +--- a/arch/x86/kernel/cpu/common.c ++++ b/arch/x86/kernel/cpu/common.c +@@ -1072,10 +1072,6 @@ void __init early_cpu_init(void) + const struct cpu_dev *const *cdev; + int count = 0; + +-#ifdef CONFIG_PROCESSOR_SELECT +- pr_info("KERNEL supported cpus:\n"); +-#endif +- + for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) { + const struct cpu_dev *cpudev = *cdev; + +@@ -1083,19 +1079,6 @@ void __init early_cpu_init(void) + break; + cpu_devs[count] = cpudev; + count++; +- +-#ifdef CONFIG_PROCESSOR_SELECT +- { +- unsigned int j; +- +- for (j = 0; j < 2; j++) { +- if (!cpudev->c_ident[j]) +- continue; +- pr_info(" %s %s\n", cpudev->c_vendor, +- cpudev->c_ident[j]); +- } +- } +-#endif + } + early_identify_cpu(&boot_cpu_data); + } |