mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Move direct command handling through __lbs_cmd() over to using the header as the first member of the command structure, and only define the __lbs_cmd() callback in one place rather than 3. Convert boot2 version command to new usage. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
18 lines
529 B
C
18 lines
529 B
C
/* 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, (struct cmd_header *) &cmd, sizeof(cmd), \
|
|
callback, callback_arg)
|
|
|
|
int __lbs_cmd(struct lbs_private *priv, uint16_t command,
|
|
struct cmd_header *in_cmd, int in_cmd_size,
|
|
int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
|
|
unsigned long callback_arg);
|
|
|
|
#endif /* _LBS_CMD_H */
|