Lines Matching refs:command
176 u16 command; in eeprom_93cx6_read() local
186 command = (PCI_EEPROM_READ_OPCODE << eeprom->width) | word; in eeprom_93cx6_read()
187 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_read()
246 u16 command; in eeprom_93cx6_readb() local
257 command = (PCI_EEPROM_READ_OPCODE << (eeprom->width + 1)) | byte; in eeprom_93cx6_readb()
258 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_readb()
309 u16 command; in eeprom_93cx6_wren() local
316 command = enable ? PCI_EEPROM_EWEN_OPCODE : PCI_EEPROM_EWDS_OPCODE; in eeprom_93cx6_wren()
317 command <<= (eeprom->width - 2); in eeprom_93cx6_wren()
319 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_wren()
342 u16 command; in eeprom_93cx6_write() local
347 command = PCI_EEPROM_WRITE_OPCODE << eeprom->width; in eeprom_93cx6_write()
348 command |= addr; in eeprom_93cx6_write()
351 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_write()