diff options
Diffstat (limited to 'drivers/scsi/bfa/bfa_cs.h')
-rw-r--r-- | drivers/scsi/bfa/bfa_cs.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/scsi/bfa/bfa_cs.h b/drivers/scsi/bfa/bfa_cs.h index 7260c74620f..99f242b9aa3 100644 --- a/drivers/scsi/bfa/bfa_cs.h +++ b/drivers/scsi/bfa/bfa_cs.h | |||
@@ -15,7 +15,7 @@ | |||
15 | * General Public License for more details. | 15 | * General Public License for more details. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | /** | 18 | /* |
19 | * bfa_cs.h BFA common services | 19 | * bfa_cs.h BFA common services |
20 | */ | 20 | */ |
21 | 21 | ||
@@ -24,7 +24,7 @@ | |||
24 | 24 | ||
25 | #include "bfa_os_inc.h" | 25 | #include "bfa_os_inc.h" |
26 | 26 | ||
27 | /** | 27 | /* |
28 | * BFA TRC | 28 | * BFA TRC |
29 | */ | 29 | */ |
30 | 30 | ||
@@ -73,7 +73,7 @@ enum { | |||
73 | #define BFA_TRC_MOD_SH 10 | 73 | #define BFA_TRC_MOD_SH 10 |
74 | #define BFA_TRC_MOD(__mod) ((BFA_TRC_ ## __mod) << BFA_TRC_MOD_SH) | 74 | #define BFA_TRC_MOD(__mod) ((BFA_TRC_ ## __mod) << BFA_TRC_MOD_SH) |
75 | 75 | ||
76 | /** | 76 | /* |
77 | * Define a new tracing file (module). Module should match one defined above. | 77 | * Define a new tracing file (module). Module should match one defined above. |
78 | */ | 78 | */ |
79 | #define BFA_TRC_FILE(__mod, __submod) \ | 79 | #define BFA_TRC_FILE(__mod, __submod) \ |
@@ -155,7 +155,7 @@ __bfa_trc32(struct bfa_trc_mod_s *trcm, int fileno, int line, u32 data) | |||
155 | #define bfa_trc_fp(_trcp, _data) | 155 | #define bfa_trc_fp(_trcp, _data) |
156 | #endif | 156 | #endif |
157 | 157 | ||
158 | /** | 158 | /* |
159 | * @ BFA LOG interfaces | 159 | * @ BFA LOG interfaces |
160 | */ | 160 | */ |
161 | #define bfa_assert(__cond) do { \ | 161 | #define bfa_assert(__cond) do { \ |
@@ -249,13 +249,13 @@ bfa_q_is_on_q_func(struct list_head *q, struct list_head *qe) | |||
249 | #define bfa_q_is_on_q(_q, _qe) \ | 249 | #define bfa_q_is_on_q(_q, _qe) \ |
250 | bfa_q_is_on_q_func(_q, (struct list_head *)(_qe)) | 250 | bfa_q_is_on_q_func(_q, (struct list_head *)(_qe)) |
251 | 251 | ||
252 | /** | 252 | /* |
253 | * @ BFA state machine interfaces | 253 | * @ BFA state machine interfaces |
254 | */ | 254 | */ |
255 | 255 | ||
256 | typedef void (*bfa_sm_t)(void *sm, int event); | 256 | typedef void (*bfa_sm_t)(void *sm, int event); |
257 | 257 | ||
258 | /** | 258 | /* |
259 | * oc - object class eg. bfa_ioc | 259 | * oc - object class eg. bfa_ioc |
260 | * st - state, eg. reset | 260 | * st - state, eg. reset |
261 | * otype - object type, eg. struct bfa_ioc_s | 261 | * otype - object type, eg. struct bfa_ioc_s |
@@ -269,7 +269,7 @@ typedef void (*bfa_sm_t)(void *sm, int event); | |||
269 | #define bfa_sm_get_state(_sm) ((_sm)->sm) | 269 | #define bfa_sm_get_state(_sm) ((_sm)->sm) |
270 | #define bfa_sm_cmp_state(_sm, _state) ((_sm)->sm == (bfa_sm_t)(_state)) | 270 | #define bfa_sm_cmp_state(_sm, _state) ((_sm)->sm == (bfa_sm_t)(_state)) |
271 | 271 | ||
272 | /** | 272 | /* |
273 | * For converting from state machine function to state encoding. | 273 | * For converting from state machine function to state encoding. |
274 | */ | 274 | */ |
275 | struct bfa_sm_table_s { | 275 | struct bfa_sm_table_s { |
@@ -279,12 +279,12 @@ struct bfa_sm_table_s { | |||
279 | }; | 279 | }; |
280 | #define BFA_SM(_sm) ((bfa_sm_t)(_sm)) | 280 | #define BFA_SM(_sm) ((bfa_sm_t)(_sm)) |
281 | 281 | ||
282 | /** | 282 | /* |
283 | * State machine with entry actions. | 283 | * State machine with entry actions. |
284 | */ | 284 | */ |
285 | typedef void (*bfa_fsm_t)(void *fsm, int event); | 285 | typedef void (*bfa_fsm_t)(void *fsm, int event); |
286 | 286 | ||
287 | /** | 287 | /* |
288 | * oc - object class eg. bfa_ioc | 288 | * oc - object class eg. bfa_ioc |
289 | * st - state, eg. reset | 289 | * st - state, eg. reset |
290 | * otype - object type, eg. struct bfa_ioc_s | 290 | * otype - object type, eg. struct bfa_ioc_s |
@@ -314,7 +314,7 @@ bfa_sm_to_state(struct bfa_sm_table_s *smt, bfa_sm_t sm) | |||
314 | return smt[i].state; | 314 | return smt[i].state; |
315 | } | 315 | } |
316 | 316 | ||
317 | /** | 317 | /* |
318 | * @ Generic wait counter. | 318 | * @ Generic wait counter. |
319 | */ | 319 | */ |
320 | 320 | ||
@@ -340,7 +340,7 @@ bfa_wc_down(struct bfa_wc_s *wc) | |||
340 | wc->wc_resume(wc->wc_cbarg); | 340 | wc->wc_resume(wc->wc_cbarg); |
341 | } | 341 | } |
342 | 342 | ||
343 | /** | 343 | /* |
344 | * Initialize a waiting counter. | 344 | * Initialize a waiting counter. |
345 | */ | 345 | */ |
346 | static inline void | 346 | static inline void |
@@ -352,7 +352,7 @@ bfa_wc_init(struct bfa_wc_s *wc, bfa_wc_resume_t wc_resume, void *wc_cbarg) | |||
352 | bfa_wc_up(wc); | 352 | bfa_wc_up(wc); |
353 | } | 353 | } |
354 | 354 | ||
355 | /** | 355 | /* |
356 | * Wait for counter to reach zero | 356 | * Wait for counter to reach zero |
357 | */ | 357 | */ |
358 | static inline void | 358 | static inline void |