mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
arch/arm: Add model string to cpuinfo
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
This commit is contained in:
@@ -1276,6 +1276,8 @@ static int c_show(struct seq_file *m, void *v)
|
||||
{
|
||||
int i, j;
|
||||
u32 cpuid;
|
||||
struct device_node *np;
|
||||
const char *model;
|
||||
|
||||
for_each_online_cpu(i) {
|
||||
/*
|
||||
@@ -1335,6 +1337,14 @@ static int c_show(struct seq_file *m, void *v)
|
||||
seq_printf(m, "Revision\t: %04x\n", system_rev);
|
||||
seq_printf(m, "Serial\t\t: %s\n", system_serial);
|
||||
|
||||
np = of_find_node_by_path("/");
|
||||
if (np) {
|
||||
if (!of_property_read_string(np, "model",
|
||||
&model))
|
||||
seq_printf(m, "Model\t\t: %s\n", model);
|
||||
of_node_put(np);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user