diff --git a/target/linux/generic/pending-5.4/312-arm64-cpuinfo-Add-model-name-in-proc-cpuinfo-for-64bit-ta.patch b/target/linux/generic/pending-5.4/312-arm64-cpuinfo-Add-model-name-in-proc-cpuinfo-for-64bit-ta.patch deleted file mode 100644 index 2664758304..0000000000 --- a/target/linux/generic/pending-5.4/312-arm64-cpuinfo-Add-model-name-in-proc-cpuinfo-for-64bit-ta.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Sumit Gupta -To: , , - -Cc: , , - , , - , , - , , - , Sumit Gupta -Subject: [PATCH] arm64: cpuinfo: Add "model name" in /proc/cpuinfo for 64bit tasks also -Date: Mon, 29 Aug 2016 14:32:25 +0530 -Message-ID: <1472461345-28219-1-git-send-email-sumitg@nvidia.com> (raw) - -Removed restriction of displaying model name for 32 bit tasks only. -Because of this Processor details were not displayed in -"System setting -> Details" in Ubuntu model name display is generic -and can be printed for 64 bit also. - -model name : ARMv8 Processor rev X (v8l) - -Signed-off-by: Sumit Gupta ---- - arch/arm64/kernel/cpuinfo.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - ---- a/arch/arm64/kernel/cpuinfo.c -+++ b/arch/arm64/kernel/cpuinfo.c -@@ -139,9 +139,8 @@ static int c_show(struct seq_file *m, vo - * "processor". Give glibc what it expects. - */ - seq_printf(m, "processor\t: %d\n", i); -- if (compat) -- seq_printf(m, "model name\t: ARMv8 Processor rev %d (%s)\n", -- MIDR_REVISION(midr), COMPAT_ELF_PLATFORM); -+ seq_printf(m, "model name\t: ARMv8 Processor rev %d (%s)\n", -+ MIDR_REVISION(midr), COMPAT_ELF_PLATFORM); - - seq_printf(m, "BogoMIPS\t: %lu.%02lu\n", - loops_per_jiffy / (500000UL/HZ),