提交 6fe3c48d 编写于 作者: R Roland Vossen 提交者: Greg Kroah-Hartman

staging: brcm80211: removed function declaration typedefs from dma.h part 3

Softmac related code cleanup. Typedefs are undesirable according to the
CodingStyle document.
Signed-off-by: NRoland Vossen <rvossen@broadcom.com>
Reviewed-by: NArend van Spriel <arend@broadcom.com>
Signed-off-by: NArend van Spriel <arend@broadcom.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 93682c22
...@@ -404,7 +404,7 @@ const struct di_fcn_s dma64proc = { ...@@ -404,7 +404,7 @@ const struct di_fcn_s dma64proc = {
(di_peeknexttxp_t) _dma_peeknexttxp, (di_peeknexttxp_t) _dma_peeknexttxp,
(void (*)(struct dma_pub *)) _dma_txblock, (void (*)(struct dma_pub *)) _dma_txblock,
(void (*)(struct dma_pub *)) _dma_txunblock, (void (*)(struct dma_pub *)) _dma_txunblock,
(di_txactive_t) _dma_txactive, (uint (*)(struct dma_pub *)) _dma_txactive,
(void (*)(struct dma_pub *)) dma64_txrotate, (void (*)(struct dma_pub *)) dma64_txrotate,
(void (*)(struct dma_pub *)) _dma_rxinit, (void (*)(struct dma_pub *)) _dma_rxinit,
...@@ -427,9 +427,9 @@ const struct di_fcn_s dma64proc = { ...@@ -427,9 +427,9 @@ const struct di_fcn_s dma64proc = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
(di_rxactive_t) _dma_rxactive, (uint (*)(struct dma_pub *)) _dma_rxactive,
(di_txpending_t) _dma_txpending, (uint (*)(struct dma_pub *)) _dma_txpending,
(di_txcommitted_t) _dma_txcommitted, (uint (*)(struct dma_pub *)) _dma_txcommitted,
39 39
}; };
......
...@@ -74,7 +74,6 @@ typedef void *(*di_peeknexttxp_t) (struct dma_pub *dmah); ...@@ -74,7 +74,6 @@ typedef void *(*di_peeknexttxp_t) (struct dma_pub *dmah);
typedef void *(*di_peeknextrxp_t) (struct dma_pub *dmah); typedef void *(*di_peeknextrxp_t) (struct dma_pub *dmah);
typedef void (*di_rxparam_get_t) (struct dma_pub *dmah, u16 *rxoffset, typedef void (*di_rxparam_get_t) (struct dma_pub *dmah, u16 *rxoffset,
u16 *rxbufsize); u16 *rxbufsize);
typedef uint(*di_txactive_t) (struct dma_pub *dmah);
typedef uint(*di_ctrlflags_t) (struct dma_pub *dmah, uint mask, uint flags); typedef uint(*di_ctrlflags_t) (struct dma_pub *dmah, uint mask, uint flags);
typedef char *(*di_dump_t) (struct dma_pub *dmah, struct brcmu_strbuf *b, typedef char *(*di_dump_t) (struct dma_pub *dmah, struct brcmu_strbuf *b,
bool dumpring); bool dumpring);
...@@ -82,9 +81,6 @@ typedef char *(*di_dumptx_t) (struct dma_pub *dmah, struct brcmu_strbuf *b, ...@@ -82,9 +81,6 @@ typedef char *(*di_dumptx_t) (struct dma_pub *dmah, struct brcmu_strbuf *b,
bool dumpring); bool dumpring);
typedef char *(*di_dumprx_t) (struct dma_pub *dmah, struct brcmu_strbuf *b, typedef char *(*di_dumprx_t) (struct dma_pub *dmah, struct brcmu_strbuf *b,
bool dumpring); bool dumpring);
typedef uint(*di_rxactive_t) (struct dma_pub *dmah);
typedef uint(*di_txpending_t) (struct dma_pub *dmah);
typedef uint(*di_txcommitted_t) (struct dma_pub *dmah);
/* dma opsvec */ /* dma opsvec */
struct di_fcn_s { struct di_fcn_s {
...@@ -105,7 +101,7 @@ struct di_fcn_s { ...@@ -105,7 +101,7 @@ struct di_fcn_s {
di_peeknexttxp_t peeknexttxp; di_peeknexttxp_t peeknexttxp;
void (*txblock) (struct dma_pub *dmah); void (*txblock) (struct dma_pub *dmah);
void (*txunblock) (struct dma_pub *dmah); void (*txunblock) (struct dma_pub *dmah);
di_txactive_t txactive; uint (*txactive)(struct dma_pub *dmah);
void (*txrotate) (struct dma_pub *dmah); void (*txrotate) (struct dma_pub *dmah);
void (*rxinit)(struct dma_pub *dmah); void (*rxinit)(struct dma_pub *dmah);
...@@ -128,9 +124,9 @@ struct di_fcn_s { ...@@ -128,9 +124,9 @@ struct di_fcn_s {
di_dump_t dump; di_dump_t dump;
di_dumptx_t dumptx; di_dumptx_t dumptx;
di_dumprx_t dumprx; di_dumprx_t dumprx;
di_rxactive_t rxactive; uint (*rxactive)(struct dma_pub *dmah);
di_txpending_t txpending; uint (*txpending)(struct dma_pub *dmah);
di_txcommitted_t txcommitted; uint (*txcommitted)(struct dma_pub *dmah);
uint endnum; uint endnum;
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册