Lines Matching refs:pagebuf
68 u8 pagebuf[DS2502_PAGE_SIZE + 1]; /* 1 byte for CRC8 */ in ds2502_read() local
77 pagebuf[0] = cmd; in ds2502_read()
78 pagebuf[1] = pos & 0xff; in ds2502_read()
79 pagebuf[2] = pos >> 8; in ds2502_read()
80 crc = ds2502_crc8(pagebuf, 3); in ds2502_read()
82 w1_write_byte(dev, pagebuf[i]); in ds2502_read()
100 ret = w1_read_buf(dev, pagebuf, bytes_in_page + 1); in ds2502_read()
106 crc = ds2502_crc8(pagebuf, bytes_in_page); in ds2502_read()
107 if (crc == pagebuf[bytes_in_page]) { in ds2502_read()
108 memcpy(buf, pagebuf, bytes_for_user); in ds2502_read()
113 pagebuf[bytes_in_page], crc, pos); in ds2502_read()