Lines Matching refs:pTable
315 static int WriteTable(struct drxd_state *state, u8 * pTable)
319 if (!pTable)
324 u32 Address = pTable[0] | (pTable[1] << 8) |
325 (pTable[2] << 16) | (pTable[3] << 24);
329 pTable += sizeof(u32);
331 Length = pTable[0] | (pTable[1] << 8);
332 pTable += sizeof(u16);
335 status = WriteBlock(state, Address, Length * 2, pTable, 0);
336 pTable += (Length * 2);