Lines Matching refs:address
45 The driver does not probe any address, so you explicitly instantiate the
52 The MAX6874/MAX6875 ignores address bit 0, so this driver attaches to multiple
53 addresses. For example, for address 0x50, it also reserves 0x51.
54 The even-address instance is called 'max6875', the odd one is 'dummy'.
61 Reads and writes are performed differently depending on the address range.
81 The command is the upper byte of the address: 0x80, 0x81, or 0x82.
82 The data word is the lower part of the address or'd with data << 8.
83 cmd = address >> 8;
84 val = (address & 0xff) | (data << 8);
87 To write 0x5a to address 0x8003:
92 Use i2c_smbus_write_byte_data() to set the read address and then
96 To read data starting at offset 0x8100, first set the address: