aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/include/bcm_rpc.h
diff options
context:
space:
mode:
authorJason Cooper <jason@lakedaemon.net>2010-09-14 09:45:30 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-09-14 11:28:59 -0400
commit7cc4a4c02954afcd00abe5af81a4254d33a36e14 (patch)
tree5ac21ca70ee2e62506aacdd66037664c664d0b41 /drivers/staging/brcm80211/include/bcm_rpc.h
parent29f6465fc8d9a3bdee8378ed1d82c8ff8364e65e (diff)
staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo *bar"'
Signed-off-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/brcm80211/include/bcm_rpc.h')
-rw-r--r--drivers/staging/brcm80211/include/bcm_rpc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/brcm80211/include/bcm_rpc.h b/drivers/staging/brcm80211/include/bcm_rpc.h
index 33408fd03d4..eb989ee5eca 100644
--- a/drivers/staging/brcm80211/include/bcm_rpc.h
+++ b/drivers/staging/brcm80211/include/bcm_rpc.h
@@ -23,11 +23,11 @@
23typedef struct rpc_info rpc_info_t; 23typedef struct rpc_info rpc_info_t;
24typedef struct rpc_buf rpc_buf_t; 24typedef struct rpc_buf rpc_buf_t;
25struct rpc_transport_info; 25struct rpc_transport_info;
26typedef void (*rpc_dispatch_cb_t) (void *ctx, struct rpc_buf * buf); 26typedef void (*rpc_dispatch_cb_t) (void *ctx, struct rpc_buf *buf);
27typedef void (*rpc_resync_cb_t) (void *ctx); 27typedef void (*rpc_resync_cb_t) (void *ctx);
28typedef void (*rpc_down_cb_t) (void *ctx); 28typedef void (*rpc_down_cb_t) (void *ctx);
29typedef void (*rpc_txdone_cb_t) (void *ctx, struct rpc_buf * buf); 29typedef void (*rpc_txdone_cb_t) (void *ctx, struct rpc_buf *buf);
30extern struct rpc_info *bcm_rpc_attach(void *pdev, osl_t * osh, 30extern struct rpc_info *bcm_rpc_attach(void *pdev, osl_t *osh,
31 struct rpc_transport_info *rpc_th); 31 struct rpc_transport_info *rpc_th);
32 32
33extern void bcm_rpc_detach(struct rpc_info *rpc); 33extern void bcm_rpc_detach(struct rpc_info *rpc);
@@ -65,9 +65,9 @@ extern uint bcm_rpc_buf_header_len(struct rpc_info *rpci);
65#define RPC_PKTLOG_SIZE 50 /* Depth of the history */ 65#define RPC_PKTLOG_SIZE 50 /* Depth of the history */
66#define RPC_PKTLOG_RD_LEN 3 66#define RPC_PKTLOG_RD_LEN 3
67#define RPC_PKTLOG_DUMP_SIZE 150 /* dump size should be more than the product of above two */ 67#define RPC_PKTLOG_DUMP_SIZE 150 /* dump size should be more than the product of above two */
68extern int bcm_rpc_pktlog_get(struct rpc_info *rpci, uint32 * buf, 68extern int bcm_rpc_pktlog_get(struct rpc_info *rpci, uint32 *buf,
69 uint buf_size, bool send); 69 uint buf_size, bool send);
70extern int bcm_rpc_dump(rpc_info_t * rpci, struct bcmstrbuf *b); 70extern int bcm_rpc_dump(rpc_info_t *rpci, struct bcmstrbuf *b);
71 71
72/* HIGH/BMAC: bit 15-8: RPC module, bit 7-0: TP module */ 72/* HIGH/BMAC: bit 15-8: RPC module, bit 7-0: TP module */
73#define RPC_ERROR_VAL 0x0001 73#define RPC_ERROR_VAL 0x0001