Release 4.11 drivers/staging/xgifb/vb_util.h
#ifndef _VBUTIL_
#define _VBUTIL_
static inline void xgifb_reg_set(unsigned long port, u8 index, u8 data)
{
outb(index, port);
outb(data, port + 1);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 23 | 69.70% | 1 | 20.00% |
Arnaud Patard | 5 | 15.15% | 1 | 20.00% |
Aaro Koskinen | 3 | 9.09% | 2 | 40.00% |
Bill Pemberton | 2 | 6.06% | 1 | 20.00% |
Total | 33 | 100.00% | 5 | 100.00% |
static inline u8 xgifb_reg_get(unsigned long port, u8 index)
{
outb(index, port);
return inb(port + 1);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 21 | 72.41% | 1 | 20.00% |
Aaro Koskinen | 3 | 10.34% | 2 | 40.00% |
Arnaud Patard | 3 | 10.34% | 1 | 20.00% |
Bill Pemberton | 2 | 6.90% | 1 | 20.00% |
Total | 29 | 100.00% | 5 | 100.00% |
static inline void xgifb_reg_and_or(unsigned long port, u8 index,
unsigned int data_and, unsigned int data_or)
{
u8 temp;
temp = xgifb_reg_get(port, index);
temp = (u8)((temp & data_and) | data_or);
xgifb_reg_set(port, index, temp);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 42 | 72.41% | 1 | 16.67% |
Shivani Bhardwaj | 5 | 8.62% | 1 | 16.67% |
Arnaud Patard | 5 | 8.62% | 1 | 16.67% |
Bill Pemberton | 3 | 5.17% | 1 | 16.67% |
Clifton Barnes | 2 | 3.45% | 1 | 16.67% |
Aaro Koskinen | 1 | 1.72% | 1 | 16.67% |
Total | 58 | 100.00% | 6 | 100.00% |
static inline void xgifb_reg_and(unsigned long port, u8 index,
unsigned int data_and)
{
u8 temp;
temp = xgifb_reg_get(port, index);
temp = (u8)(temp & data_and);
xgifb_reg_set(port, index, temp);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 31 | 62.00% | 1 | 14.29% |
Shivani Bhardwaj | 8 | 16.00% | 1 | 14.29% |
Arnaud Patard | 5 | 10.00% | 1 | 14.29% |
Bill Pemberton | 3 | 6.00% | 1 | 14.29% |
Aaro Koskinen | 2 | 4.00% | 2 | 28.57% |
Clifton Barnes | 1 | 2.00% | 1 | 14.29% |
Total | 50 | 100.00% | 7 | 100.00% |
static inline void xgifb_reg_or(unsigned long port, u8 index,
unsigned int data_or)
{
u8 temp;
temp = xgifb_reg_get(port, index);
temp |= data_or;
xgifb_reg_set(port, index, temp);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 33 | 76.74% | 1 | 20.00% |
Arnaud Patard | 5 | 11.63% | 1 | 20.00% |
Bill Pemberton | 3 | 6.98% | 1 | 20.00% |
Aaro Koskinen | 1 | 2.33% | 1 | 20.00% |
Clifton Barnes | 1 | 2.33% | 1 | 20.00% |
Total | 43 | 100.00% | 5 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Hüwe | 150 | 67.87% | 1 | 11.11% |
Arnaud Patard | 31 | 14.03% | 1 | 11.11% |
Shivani Bhardwaj | 13 | 5.88% | 1 | 11.11% |
Bill Pemberton | 13 | 5.88% | 1 | 11.11% |
Aaro Koskinen | 10 | 4.52% | 4 | 44.44% |
Clifton Barnes | 4 | 1.81% | 1 | 11.11% |
Total | 221 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.