#define PKTFREESETCB(osh, _tx_fn, _tx_ctx) \
do { \
- ((osl_pubinfo_t *)osh)->tx_fn = _tx_fn; \
- ((osl_pubinfo_t *)osh)->tx_ctx = _tx_ctx; \
+ ((struct osl_pubinfo *)osh)->tx_fn = _tx_fn; \
+ ((struct osl_pubinfo *)osh)->tx_ctx = _tx_ctx; \
} while (0)
#if defined(BCMSDIO) && !defined(BRCM_FULLMAC)
#define REGOPSSET(osh, rreg, wreg, ctx) \
do { \
- ((osl_pubinfo_t *)osh)->rreg_fn = rreg; \
- ((osl_pubinfo_t *)osh)->wreg_fn = wreg; \
- ((osl_pubinfo_t *)osh)->reg_ctx = ctx; \
+ ((struct osl_pubinfo *)osh)->rreg_fn = rreg; \
+ ((struct osl_pubinfo *)osh)->wreg_fn = wreg; \
+ ((struct osl_pubinfo *)osh)->reg_ctx = ctx; \
} while (0)
#endif
#endif
#if defined(BCMSDIO)
-#define SELECT_BUS_WRITE(osh, mmap_op, bus_op) if (((osl_pubinfo_t *)(osh))->mmbus) \
+#define SELECT_BUS_WRITE(osh, mmap_op, bus_op) \
+ if (((struct osl_pubinfo *)(osh))->mmbus) \
mmap_op else bus_op
-#define SELECT_BUS_READ(osh, mmap_op, bus_op) (((osl_pubinfo_t *)(osh))->mmbus) ? \
- mmap_op : bus_op
+#define SELECT_BUS_READ(osh, mmap_op, bus_op) \
+ (((struct osl_pubinfo *)(osh))->mmbus) ? mmap_op : bus_op
#else
#define SELECT_BUS_WRITE(osh, mmap_op, bus_op) mmap_op
#define SELECT_BUS_READ(osh, mmap_op, bus_op) mmap_op
#define PKTSETLEN(skb, len) __skb_trim((struct sk_buff *)(skb), (len))
#define PKTPUSH(skb, bytes) skb_push((struct sk_buff *)(skb), (bytes))
#define PKTPULL(skb, bytes) skb_pull((struct sk_buff *)(skb), (bytes))
-#define PKTALLOCED(osh) (((osl_pubinfo_t *)(osh))->pktalloced)
+#define PKTALLOCED(osh) (((struct osl_pubinfo *)(osh))->pktalloced)
#define PKTSETPOOL(osh, skb, x, y) do {} while (0)
#define PKTPOOL(osh, skb) false
extern void *osl_pktget(osl_t *osh, uint len);
#ifdef BRCM_FULLMAC
static inline void *
-osl_pkt_frmnative(osl_pubinfo_t *osh, struct sk_buff *skb)
+osl_pkt_frmnative(struct osl_pubinfo *osh, struct sk_buff *skb)
{
struct sk_buff *nskb;
return (void *)skb;
}
#define PKTFRMNATIVE(osh, skb) \
- osl_pkt_frmnative(((osl_pubinfo_t *)osh), (struct sk_buff*)(skb))
+ osl_pkt_frmnative(((struct osl_pubinfo *)osh), (struct sk_buff*)(skb))
static inline struct sk_buff *
-osl_pkt_tonative(osl_pubinfo_t *osh, void *pkt)
+osl_pkt_tonative(struct osl_pubinfo *osh, void *pkt)
{
struct sk_buff *nskb;
return (struct sk_buff *)pkt;
}
#define PKTTONATIVE(osh, pkt) \
- osl_pkt_tonative((osl_pubinfo_t *)(osh), (pkt))
+ osl_pkt_tonative((struct osl_pubinfo *)(osh), (pkt))
#else /* !BRCM_FULLMAC */
-#define PKTUNALLOC(osh) (((osl_pubinfo_t *)(osh))->pktalloced--)
+#define PKTUNALLOC(osh) (((struct osl_pubinfo *)(osh))->pktalloced--)
#define PKTSETSKIPCT(osh, skb)
#define PKTCLRSKIPCT(osh, skb)
#if defined(BCMSDIO) && !defined(BRCM_FULLMAC)
u8 osl_readb(osl_t *osh, volatile u8 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u8) ((rreg) (ctx, (void *)r, sizeof(u8)));
}
u16 osl_readw(osl_t *osh, volatile u16 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u16) ((rreg) (ctx, (void *)r, sizeof(u16)));
}
u32 osl_readl(osl_t *osh, volatile u32 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u32) ((rreg) (ctx, (void *)r, sizeof(u32)));
}
void osl_writeb(osl_t *osh, volatile u8 *r, u8 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u8)));
}
void osl_writew(osl_t *osh, volatile u16 *r, u16 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u16)));
}
void osl_writel(osl_t *osh, volatile u32 *r, u32 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u32)));
}