Go to the documentation of this file.
33 #define lbs_cmd(priv, cmdnr, cmd, cb, cb_arg) ({ \
34 uint16_t __sz = le16_to_cpu((cmd)->hdr.size); \
35 (cmd)->hdr.size = cpu_to_le16(sizeof(*(cmd))); \
36 __lbs_cmd(priv, cmdnr, &(cmd)->hdr, __sz, cb, cb_arg); \
39 #define lbs_cmd_with_response(priv, cmdnr, cmd) \
40 lbs_cmd(priv, cmdnr, cmd, lbs_cmd_copyback, (unsigned long) (cmd))
48 unsigned long callback_arg);