Searched refs:LBS_DEB_LL (Results 1 – 1 of 1) sorted by relevance
/drivers/net/wireless/libertas/ |
D | defs.h | 48 #define LBS_DEB_LL(grp, grpnam, fmt, args...) \ macro 53 #define LBS_DEB_LL(grp, grpnam, fmt, args...) do {} while (0) macro 57 LBS_DEB_LL(grp | LBS_DEB_ENTER, " enter", "%s()\n", __func__); 59 LBS_DEB_LL(grp | LBS_DEB_ENTER, " enter", "%s(" fmt ")\n", __func__, ## args); 61 LBS_DEB_LL(grp | LBS_DEB_LEAVE, " leave", "%s()\n", __func__); 63 LBS_DEB_LL(grp | LBS_DEB_LEAVE, " leave", "%s(), " fmt "\n", \ 65 #define lbs_deb_main(fmt, args...) LBS_DEB_LL(LBS_DEB_MAIN, " main", fmt, ##args) 66 #define lbs_deb_net(fmt, args...) LBS_DEB_LL(LBS_DEB_NET, " net", fmt, ##args) 67 #define lbs_deb_mesh(fmt, args...) LBS_DEB_LL(LBS_DEB_MESH, " mesh", fmt, ##args) 68 #define lbs_deb_wext(fmt, args...) LBS_DEB_LL(LBS_DEB_WEXT, " wext", fmt, ##args) [all …]
|