Release 4.12 include/asm-generic/ide_iops.h
/* Generic I/O and MEMIO string operations. */
#define __ide_insw insw
#define __ide_insl insl
#define __ide_outsw outsw
#define __ide_outsl outsl
static __inline__ void __ide_mm_insw(void __iomem *port, void *addr, u32 count)
{
while (count--) {
*(u16 *)addr = readw(port);
addr += 2;
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 39 | 92.86% | 1 | 50.00% |
Linus Torvalds | 3 | 7.14% | 1 | 50.00% |
Total | 42 | 100.00% | 2 | 100.00% |
static __inline__ void __ide_mm_insl(void __iomem *port, void *addr, u32 count)
{
while (count--) {
*(u32 *)addr = readl(port);
addr += 4;
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 39 | 92.86% | 1 | 50.00% |
Linus Torvalds | 3 | 7.14% | 1 | 50.00% |
Total | 42 | 100.00% | 2 | 100.00% |
static __inline__ void __ide_mm_outsw(void __iomem *port, void *addr, u32 count)
{
while (count--) {
writew(*(u16 *)addr, port);
addr += 2;
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 39 | 92.86% | 1 | 50.00% |
Linus Torvalds | 3 | 7.14% | 1 | 50.00% |
Total | 42 | 100.00% | 2 | 100.00% |
static __inline__ void __ide_mm_outsl(void __iomem * port, void *addr, u32 count)
{
while (count--) {
writel(*(u32 *)addr, port);
addr += 4;
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 39 | 92.86% | 1 | 50.00% |
Linus Torvalds | 3 | 7.14% | 1 | 50.00% |
Total | 42 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 173 | 93.51% | 1 | 50.00% |
Linus Torvalds | 12 | 6.49% | 1 | 50.00% |
Total | 185 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.