cmd.h 480 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (C) 2007, Red Hat, Inc. */

#ifndef _LBS_CMD_H_
#define _LBS_CMD_H_

#include "hostcmd.h"
#include "dev.h"

#define lbs_cmd(priv, cmdnr, cmd, callback, callback_arg) \
	__lbs_cmd(priv, cmdnr, &cmd, sizeof(cmd), callback, callback_arg)

int __lbs_cmd(struct lbs_private *priv, uint16_t command, void *cmd, int cmd_size, 
	      int (*callback)(struct lbs_private *, unsigned long, struct cmd_ds_command *),
	      unsigned long callback_arg);

#endif /* _LBS_CMD_H */