Scott Wood wrote:
> 
>> +void tqm5200_show_cpuinfo(struct seq_file *m)
>> +{
>> +    struct device_node* np = of_find_all_nodes(NULL);
>> +    const char *model = NULL;
>> +
>> +    if (np)
>> +            model = of_get_property(np, "model", NULL);
>> +
>> +    seq_printf(m, "vendor\t\t:      Freescale Semiconductor\n");
>> +    seq_printf(m, "machine\t\t:     %s\n", model ? model : "unknown");
>> +
>> +    of_node_put(np);
>> +}
> 
> Get rid of this.

Agree, that may be overhead in some cases. But there would be also
cases where printing out a machine name would be informative. CM5200
is one such example, there are several variants of the hw and platform
name is too generic.

Other situation would be adding compatible='mpc5200-generic' platform
where platform name would not provide any details.

m.
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Reply via email to