Lines Matching defs:val
620 void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
621 void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
624 void (*write_prph)(struct iwl_trans *trans, u32 ofs, u32 val);
629 int (*read_config32)(struct iwl_trans *trans, u32 ofs, u32 *val);
1348 static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1350 trans->ops->write8(trans, ofs, val);
1353 static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1355 trans->ops->write32(trans, ofs, val);
1369 u32 val)
1371 return trans->ops->write_prph(trans, ofs, val);
1404 u32 val)
1406 return iwl_trans_write_mem(trans, addr, &val, 1);