Lines Matching refs:command
175 u16 command; in eeprom_93cx6_read() local
185 command = (PCI_EEPROM_READ_OPCODE << eeprom->width) | word; in eeprom_93cx6_read()
186 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_read()
240 u16 command; in eeprom_93cx6_readb() local
251 command = (PCI_EEPROM_READ_OPCODE << (eeprom->width + 1)) | byte; in eeprom_93cx6_readb()
252 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_readb()
298 u16 command; in eeprom_93cx6_wren() local
305 command = enable ? PCI_EEPROM_EWEN_OPCODE : PCI_EEPROM_EWDS_OPCODE; in eeprom_93cx6_wren()
306 command <<= (eeprom->width - 2); in eeprom_93cx6_wren()
308 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_wren()
331 u16 command; in eeprom_93cx6_write() local
336 command = PCI_EEPROM_WRITE_OPCODE << eeprom->width; in eeprom_93cx6_write()
337 command |= addr; in eeprom_93cx6_write()
340 eeprom_93cx6_write_bits(eeprom, command, in eeprom_93cx6_write()