packages: clean up the package folder
[openwrt/svn-archive/archive.git] / package / kernel / broadcom-wl / src / glue / wl_glue.h
1 /*
2 * wl_glue.h: Broadcom WL support module providing a unified SSB/BCMA handling.
3 * Copyright (C) 2011 Jo-Philipp Wich <jow@openwrt.org>
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