// SPDX-License-Identifier: GPL-2.0 /* * starfire.c: Starfire/E10000 support. * * Copyright (C) 1998 David S. Miller (davem@redhat.com) * Copyright (C) 2000 Anton Blanchard (anton@samba.org) */ #include <linux/kernel.h> #include <linux/slab.h> #include <asm/page.h> #include <asm/oplib.h> #include <asm/smp.h> #include <asm/upa.h> #include <asm/starfire.h> /* * A few places around the kernel check this to see if * they need to call us to do things in a Starfire specific * way. */ int this_is_starfire = 0;
void check_if_starfire(void) { phandle ssnode = prom_finddevice("/ssp-serial"); if (ssnode != 0 && (s32)ssnode != -1) this_is_starfire = 1; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 29 | 87.88% | 2 | 50.00% |
Andres Salomon | 4 | 12.12% | 2 | 50.00% |
Total | 33 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 178 | 100.00% | 3 | 100.00% |
Total | 178 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 201 | 100.00% | 3 | 100.00% |
Total | 201 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 473 | 98.54% | 3 | 37.50% |
Andres Salomon | 4 | 0.83% | 2 | 25.00% |
Greg Kroah-Hartman | 1 | 0.21% | 1 | 12.50% |
Linus Torvalds | 1 | 0.21% | 1 | 12.50% |
Adrian Bunk | 1 | 0.21% | 1 | 12.50% |
Total | 480 | 100.00% | 8 | 100.00% |