blob: 546db4996487447902cae7f0df441109792356f7 [file] [log] [blame]
Dan Williams14e865b2007-12-10 15:11:23 -05001/* Copyright (C) 2007, Red Hat, Inc. */
2
3#ifndef _LBS_CMD_H_
4#define _LBS_CMD_H_
5
6#include "hostcmd.h"
7#include "dev.h"
8
9#define lbs_cmd(priv, cmdnr, cmd, callback, callback_arg) \
10 __lbs_cmd(priv, cmdnr, &cmd, sizeof(cmd), callback, callback_arg)
11
12int __lbs_cmd(struct lbs_private *priv, uint16_t command, void *cmd, int cmd_size,
13 int (*callback)(struct lbs_private *, unsigned long, struct cmd_ds_command *),
14 unsigned long callback_arg);
15
16#endif /* _LBS_CMD_H */