Lines Matching refs:command
184 u16 command; in eeprom_93cx6_read() local
194 command = (PCI_EEPROM_READ_OPCODE << eeprom->width) | word; in eeprom_93cx6_read()
195 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_read()
249 u16 command; in eeprom_93cx6_readb() local
260 command = (PCI_EEPROM_READ_OPCODE << (eeprom->width + 1)) | byte; in eeprom_93cx6_readb()
261 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_readb()
307 u16 command; in eeprom_93cx6_wren() local
314 command = enable ? PCI_EEPROM_EWEN_OPCODE : PCI_EEPROM_EWDS_OPCODE; in eeprom_93cx6_wren()
315 command <<= (eeprom->width - 2); in eeprom_93cx6_wren()
317 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_wren()
340 u16 command; in eeprom_93cx6_write() local
345 command = PCI_EEPROM_WRITE_OPCODE << eeprom->width; in eeprom_93cx6_write()
346 command |= addr; in eeprom_93cx6_write()
349 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_write()