-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Williams
authored and
David S. Miller
committed
Jan 28, 2008
1 parent
b36d4cf
commit 8e7bde9
Showing
5 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4f679496567809ce1e95730c25274e1832537f4b | ||
refs/heads/master: 14e865ba5d9e9adc90363e572743ac238935ba38 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters