Lines Matching full:op_mode
44 * @op_mode: the running op_mode
52 * @dbgfs_op_mode: debugfs op_mode directory entry
58 struct iwl_op_mode *op_mode; member
83 const struct iwl_op_mode_ops *ops; /* pointer to op_mode ops */
84 struct list_head drv; /* list of devices using this op_mode */
1343 struct iwl_op_mode *op_mode = NULL; in _iwl_op_mode_start() local
1354 op_mode = ops->start(drv->trans, drv->trans->cfg, in _iwl_op_mode_start()
1357 if (op_mode) in _iwl_op_mode_start()
1358 return op_mode; in _iwl_op_mode_start()
1373 /* op_mode can be NULL if its start failed */ in _iwl_op_mode_stop()
1374 if (drv->op_mode) { in _iwl_op_mode_stop()
1375 iwl_op_mode_stop(drv->op_mode); in _iwl_op_mode_stop()
1376 drv->op_mode = NULL; in _iwl_op_mode_stop()
1637 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n", in iwl_req_fw_callback()
1640 /* add this device to the list of devices using this op_mode */ in iwl_req_fw_callback()
1644 drv->op_mode = _iwl_op_mode_start(drv, op); in iwl_req_fw_callback()
1646 if (!drv->op_mode) { in iwl_req_fw_callback()
1800 drv->op_mode = _iwl_op_mode_start(drv, op); in iwl_opmode_register()