Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * DVB USB framework
0004  *
0005  * Copyright (C) 2004-6 Patrick Boettcher <patrick.boettcher@posteo.de>
0006  * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
0007  */
0008 
0009 #ifndef DVB_USB_COMMON_H
0010 #define DVB_USB_COMMON_H
0011 
0012 #include "dvb_usb.h"
0013 
0014 /* commonly used  methods */
0015 extern int usb_urb_initv2(struct usb_data_stream *stream,
0016         const struct usb_data_stream_properties *props);
0017 extern int usb_urb_exitv2(struct usb_data_stream *stream);
0018 extern int usb_urb_submitv2(struct usb_data_stream *stream,
0019         struct usb_data_stream_properties *props);
0020 extern int usb_urb_killv2(struct usb_data_stream *stream);
0021 
0022 #endif