This source file includes following definitions.
- asd_dump_seq_state
- asd_dump_frame_rcvd
1
2
3
4
5
6
7
8
9 #ifndef _AIC94XX_DUMP_H_
10 #define _AIC94XX_DUMP_H_
11
12 #ifdef ASD_DEBUG
13
14 void asd_dump_seq_state(struct asd_ha_struct *asd_ha, u8 lseq_mask);
15 void asd_dump_frame_rcvd(struct asd_phy *phy,
16 struct done_list_struct *dl);
17 #else
18
19 static inline void asd_dump_seq_state(struct asd_ha_struct *asd_ha,
20 u8 lseq_mask) { }
21 static inline void asd_dump_frame_rcvd(struct asd_phy *phy,
22 struct done_list_struct *dl) { }
23 #endif
24
25 #endif