Lines Matching refs:ofs
527 void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
528 void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
529 u32 (*read32)(struct iwl_trans *trans, u32 ofs);
530 u32 (*read_prph)(struct iwl_trans *trans, u32 ofs);
531 void (*write_prph)(struct iwl_trans *trans, u32 ofs, u32 val);
919 static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val) in iwl_trans_write8() argument
921 trans->ops->write8(trans, ofs, val); in iwl_trans_write8()
924 static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val) in iwl_trans_write32() argument
926 trans->ops->write32(trans, ofs, val); in iwl_trans_write32()
929 static inline u32 iwl_trans_read32(struct iwl_trans *trans, u32 ofs) in iwl_trans_read32() argument
931 return trans->ops->read32(trans, ofs); in iwl_trans_read32()
934 static inline u32 iwl_trans_read_prph(struct iwl_trans *trans, u32 ofs) in iwl_trans_read_prph() argument
936 return trans->ops->read_prph(trans, ofs); in iwl_trans_read_prph()
939 static inline void iwl_trans_write_prph(struct iwl_trans *trans, u32 ofs, in iwl_trans_write_prph() argument
942 return trans->ops->write_prph(trans, ofs, val); in iwl_trans_write_prph()