/* * include/asm-mips/dec/ioasic.h * * DEC I/O ASIC access operations. * * Copyright (C) 2000, 2002, 2003 Maciej W. Rozycki * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #ifndef __ASM_DEC_IOASIC_H #define __ASM_DEC_IOASIC_H #include <linux/spinlock.h> #include <linux/types.h> extern spinlock_t ioasic_ssr_lock; extern volatile u32 *ioasic_base;
static inline void ioasic_write(unsigned int reg, u32 v) { ioasic_base[reg / 4] = v; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 21 | 91.30% | 1 | 50.00% |
Ralf Bächle | 2 | 8.70% | 1 | 50.00% |
Total | 23 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 17 | 89.47% | 1 | 50.00% |
Ralf Bächle | 2 | 10.53% | 1 | 50.00% |
Total | 19 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 52 | 62.65% | 1 | 25.00% |
Ralf Bächle | 24 | 28.92% | 1 | 25.00% |
Yoichi Yuasa | 6 | 7.23% | 1 | 25.00% |
Maciej W. Rozycki | 1 | 1.20% | 1 | 25.00% |
Total | 83 | 100.00% | 4 | 100.00% |