hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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