@@ -55,7 +55,7 @@ static void bnxt_qplib_service_creq(struct tasklet_struct *t);
55
55
56
56
/**
57
57
* bnxt_qplib_map_rc - map return type based on opcode
58
- * @opcode - roce slow path opcode
58
+ * @opcode: roce slow path opcode
59
59
*
60
60
* case #1
61
61
* Firmware initiated error recovery is a safe state machine and
@@ -98,8 +98,8 @@ static int bnxt_qplib_map_rc(u8 opcode)
98
98
99
99
/**
100
100
* bnxt_re_is_fw_stalled - Check firmware health
101
- * @rcfw - rcfw channel instance of rdev
102
- * @cookie - cookie to track the command
101
+ * @rcfw: rcfw channel instance of rdev
102
+ * @cookie: cookie to track the command
103
103
*
104
104
* If firmware has not responded any rcfw command within
105
105
* rcfw->max_timeout, consider firmware as stalled.
@@ -133,8 +133,8 @@ static int bnxt_re_is_fw_stalled(struct bnxt_qplib_rcfw *rcfw,
133
133
134
134
/**
135
135
* __wait_for_resp - Don't hold the cpu context and wait for response
136
- * @rcfw - rcfw channel instance of rdev
137
- * @cookie - cookie to track the command
136
+ * @rcfw: rcfw channel instance of rdev
137
+ * @cookie: cookie to track the command
138
138
*
139
139
* Wait for command completion in sleepable context.
140
140
*
@@ -179,8 +179,8 @@ static int __wait_for_resp(struct bnxt_qplib_rcfw *rcfw, u16 cookie)
179
179
180
180
/**
181
181
* __block_for_resp - hold the cpu context and wait for response
182
- * @rcfw - rcfw channel instance of rdev
183
- * @cookie - cookie to track the command
182
+ * @rcfw: rcfw channel instance of rdev
183
+ * @cookie: cookie to track the command
184
184
*
185
185
* This function will hold the cpu (non-sleepable context) and
186
186
* wait for command completion. Maximum holding interval is 8 second.
@@ -216,8 +216,8 @@ static int __block_for_resp(struct bnxt_qplib_rcfw *rcfw, u16 cookie)
216
216
};
217
217
218
218
/* __send_message_no_waiter - get cookie and post the message.
219
- * @rcfw - rcfw channel instance of rdev
220
- * @msg - qplib message internal
219
+ * @rcfw: rcfw channel instance of rdev
220
+ * @msg: qplib message internal
221
221
*
222
222
* This function will just post and don't bother about completion.
223
223
* Current design of this function is -
@@ -374,8 +374,8 @@ static int __send_message(struct bnxt_qplib_rcfw *rcfw,
374
374
375
375
/**
376
376
* __poll_for_resp - self poll completion for rcfw command
377
- * @rcfw - rcfw channel instance of rdev
378
- * @cookie - cookie to track the command
377
+ * @rcfw: rcfw channel instance of rdev
378
+ * @cookie: cookie to track the command
379
379
*
380
380
* It works same as __wait_for_resp except this function will
381
381
* do self polling in sort interval since interrupt is disabled.
@@ -471,8 +471,8 @@ static void __destroy_timedout_ah(struct bnxt_qplib_rcfw *rcfw,
471
471
/**
472
472
* __bnxt_qplib_rcfw_send_message - qplib interface to send
473
473
* and complete rcfw command.
474
- * @rcfw - rcfw channel instance of rdev
475
- * @msg - qplib message internal
474
+ * @rcfw: rcfw channel instance of rdev
475
+ * @msg: qplib message internal
476
476
*
477
477
* This function does not account shadow queue depth. It will send
478
478
* all the command unconditionally as long as send queue is not full.
@@ -534,8 +534,8 @@ static int __bnxt_qplib_rcfw_send_message(struct bnxt_qplib_rcfw *rcfw,
534
534
/**
535
535
* bnxt_qplib_rcfw_send_message - qplib interface to send
536
536
* and complete rcfw command.
537
- * @rcfw - rcfw channel instance of rdev
538
- * @msg - qplib message internal
537
+ * @rcfw: rcfw channel instance of rdev
538
+ * @msg: qplib message internal
539
539
*
540
540
* Driver interact with Firmware through rcfw channel/slow path in two ways.
541
541
* a. Blocking rcfw command send. In this path, driver cannot hold
0 commit comments