Searched refs:invbyte (Results 1 – 1 of 1) sorted by relevance
/linux-2.4.37.9/drivers/char/rio/ |
D | rioinit.c | 1130 unsigned char invbyte; local 1143 invbyte = ~newbyte; 1144 invword = invbyte | (invbyte<<8); 1178 WBYTE(ram[off],invbyte); 1179 if (RBYTE(ram[off]) != invbyte) { 1180 …Byte Inv Check: BYTE at offset 0x%x should have been=%x, was=%x\n", off, invbyte, RBYTE(ram[off])); 1230 swapword = invbyte | (newbyte << 8); 1233 WBYTE(ram[off],invbyte); 1251 if (RBYTE(ram[off+1]) != invbyte) { 1252 …Word Check 2: BYTE at offset 0x%x should have been=%x, was=%x\n", off+1, invbyte, RBYTE(ram[off+1]…
|