mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
arch/arm: Add model string to cpuinfo
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
This commit is contained in:
@@ -1260,6 +1260,8 @@ static int c_show(struct seq_file *m, void *v)
|
|||||||
{
|
{
|
||||||
int i, j;
|
int i, j;
|
||||||
u32 cpuid;
|
u32 cpuid;
|
||||||
|
struct device_node *np;
|
||||||
|
const char *model;
|
||||||
|
|
||||||
for_each_online_cpu(i) {
|
for_each_online_cpu(i) {
|
||||||
/*
|
/*
|
||||||
@@ -1319,6 +1321,14 @@ static int c_show(struct seq_file *m, void *v)
|
|||||||
seq_printf(m, "Revision\t: %04x\n", system_rev);
|
seq_printf(m, "Revision\t: %04x\n", system_rev);
|
||||||
seq_printf(m, "Serial\t\t: %s\n", system_serial);
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user