OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * wl_glue.h: Broadcom WL support module providing a unified SSB/BCMA handling.
3 * Copyright (C) 2011 Jo-Philipp Wich <jo@mein.io>
4 */
5  
6 #include <linux/types.h>
7  
8 typedef void * (*wl_glue_attach_cb_t)(u16, u16, ulong, void *, u32);
9 typedef void (*wl_glue_remove_cb_t)(void *);
10  
11 enum wl_glue_bus_type {
12 WL_GLUE_BUS_TYPE_UNSPEC,
13 WL_GLUE_BUS_TYPE_SSB,
14 WL_GLUE_BUS_TYPE_BCMA
15 };
16  
17 extern void wl_glue_set_attach_callback(wl_glue_attach_cb_t cb);
18 extern void wl_glue_set_remove_callback(wl_glue_remove_cb_t cb);
19 extern int wl_glue_register(void);
20 extern int wl_glue_unregister(void);
21 extern struct device * wl_glue_get_dmadev(void *);
22