/* * TURBOchannel architecture calls. * * Copyright (c) Harald Koerfgen, 1998 * Copyright (c) 2001, 2003, 2005, 2006 Maciej W. Rozycki * Copyright (c) 2005 James Simmons * * This file is subject to the terms and conditions of the GNU * General Public License. See the file "COPYING" in the main * directory of this archive for more details. */ #include <linux/compiler.h> #include <linux/errno.h> #include <linux/init.h> #include <linux/string.h> #include <linux/tc.h> #include <linux/types.h> #include <asm/addrspace.h> #include <asm/bootinfo.h> #include <asm/paccess.h> #include <asm/dec/interrupts.h> #include <asm/dec/prom.h> #include <asm/dec/system.h> /* * Protected read byte from TURBOchannel slot space. */
int tc_preadb(u8 *valp, void __iomem *addr) { return get_dbe(*valp, (u8 *)addr); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 112 | 100.00% | 1 | 100.00% |
Total | 112 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 94 | 100.00% | 1 | 100.00% |
Total | 94 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 273 | 100.00% | 1 | 100.00% |
Total | 273 | 100.00% | 1 | 100.00% |