23 lines
647 B
C
23 lines
647 B
C
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
/*
|
||
|
* DVB USB framework
|
||
|
*
|
||
|
* Copyright (C) 2004-6 Patrick Boettcher <patrick.boettcher@posteo.de>
|
||
|
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
|
||
|
*/
|
||
|
|
||
|
#ifndef DVB_USB_COMMON_H
|
||
|
#define DVB_USB_COMMON_H
|
||
|
|
||
|
#include "dvb_usb.h"
|
||
|
|
||
|
/* commonly used methods */
|
||
|
extern int usb_urb_initv2(struct usb_data_stream *stream,
|
||
|
const struct usb_data_stream_properties *props);
|
||
|
extern int usb_urb_exitv2(struct usb_data_stream *stream);
|
||
|
extern int usb_urb_submitv2(struct usb_data_stream *stream,
|
||
|
struct usb_data_stream_properties *props);
|
||
|
extern int usb_urb_killv2(struct usb_data_stream *stream);
|
||
|
|
||
|
#endif
|