mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
* adds a rewrite of the tapi drivers + sip app. this is the result of lars' gsoc 2010 project, Thanks ! git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23840 3c298f89-4303-0410-b956-a3cf2f4a3e73
11 lines
409 B
C
11 lines
409 B
C
#ifndef __VMMC_LINK_H__
|
|
#define __VMMC_LINK_H__
|
|
|
|
struct tapi_link *vmmc_tapi_link_alloc(struct tapi_device *tdev,
|
|
struct tapi_endpoint *ep1, struct tapi_endpoint *ep2);
|
|
void vmmc_tapi_link_free(struct tapi_device *tdev, struct tapi_link *link);
|
|
int vmmc_tapi_link_enable(struct tapi_device *tdev, struct tapi_link *link);
|
|
int vmmc_tapi_link_disable(struct tapi_device *tdev, struct tapi_link *link);
|
|
|
|
#endif
|