2019-05-19 21:51:31 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-06-21 10:09:41 +08:00
|
|
|
/*
|
|
|
|
* DVB USB framework
|
2012-05-23 21:06:09 +08:00
|
|
|
*
|
2016-01-24 22:56:58 +08:00
|
|
|
* Copyright (C) 2004-6 Patrick Boettcher <patrick.boettcher@posteo.de>
|
2012-06-21 10:09:41 +08:00
|
|
|
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
|
2012-05-23 21:06:09 +08:00
|
|
|
*/
|
2012-06-21 10:09:41 +08:00
|
|
|
|
2012-05-23 21:06:09 +08:00
|
|
|
#ifndef DVB_USB_COMMON_H
|
|
|
|
#define DVB_USB_COMMON_H
|
|
|
|
|
|
|
|
#include "dvb_usb.h"
|
|
|
|
|
|
|
|
/* commonly used methods */
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_initv2(struct usb_data_stream *stream,
|
2012-06-17 03:02:57 +08:00
|
|
|
const struct usb_data_stream_properties *props);
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_exitv2(struct usb_data_stream *stream);
|
|
|
|
extern int usb_urb_submitv2(struct usb_data_stream *stream,
|
2012-05-29 04:25:40 +08:00
|
|
|
struct usb_data_stream_properties *props);
|
2012-08-02 01:44:06 +08:00
|
|
|
extern int usb_urb_killv2(struct usb_data_stream *stream);
|
2012-05-23 21:06:09 +08:00
|
|
|
|
|
|
|
#endif
|