auxio_32.c (18ffa418aead13c56515ac74cd26105102128aca) auxio_32.c (c000c71272ddbe3774b624fdef4eae3147877133)
1/* auxio.c: Probing for the Sparc AUXIO register at boot time.
2 *
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#include <linux/stddef.h>
7#include <linux/init.h>
8#include <linux/spinlock.h>

--- 14 unchanged lines hidden (view full) ---

23
24void __init auxio_probe(void)
25{
26 int node, auxio_nd;
27 struct linux_prom_registers auxregs[1];
28 struct resource r;
29
30 switch (sparc_cpu_model) {
1/* auxio.c: Probing for the Sparc AUXIO register at boot time.
2 *
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#include <linux/stddef.h>
7#include <linux/init.h>
8#include <linux/spinlock.h>

--- 14 unchanged lines hidden (view full) ---

23
24void __init auxio_probe(void)
25{
26 int node, auxio_nd;
27 struct linux_prom_registers auxregs[1];
28 struct resource r;
29
30 switch (sparc_cpu_model) {
31 case sparc_leon:
31 case sun4d:
32 case sun4:
33 return;
34 default:
35 break;
36 }
37 node = prom_getchild(prom_root_node);
38 auxio_nd = prom_searchsiblings(node, "auxiliary-io");

--- 102 unchanged lines hidden ---
32 case sun4d:
33 case sun4:
34 return;
35 default:
36 break;
37 }
38 node = prom_getchild(prom_root_node);
39 auxio_nd = prom_searchsiblings(node, "auxiliary-io");

--- 102 unchanged lines hidden ---