Lines Matching refs:word
1057 const unsigned int word) in rt2x00_rf_read() argument
1059 BUG_ON(word < 1 || word > rt2x00dev->ops->rf_size / sizeof(u32)); in rt2x00_rf_read()
1060 return rt2x00dev->rf[word - 1]; in rt2x00_rf_read()
1064 const unsigned int word, u32 data) in rt2x00_rf_write() argument
1066 BUG_ON(word < 1 || word > rt2x00dev->ops->rf_size / sizeof(u32)); in rt2x00_rf_write()
1067 rt2x00dev->rf[word - 1] = data; in rt2x00_rf_write()
1074 const unsigned int word) in rt2x00_eeprom_addr() argument
1076 return (void *)&rt2x00dev->eeprom[word]; in rt2x00_eeprom_addr()
1080 const unsigned int word) in rt2x00_eeprom_read() argument
1082 return le16_to_cpu(rt2x00dev->eeprom[word]); in rt2x00_eeprom_read()
1086 const unsigned int word, u16 data) in rt2x00_eeprom_write() argument
1088 rt2x00dev->eeprom[word] = cpu_to_le16(data); in rt2x00_eeprom_write()