Deleted Added
sdiff udiff text old ( 186730 ) new ( 187176 )
full compact
1/* $NetBSD: uftdi.c,v 1.13 2002/09/23 05:51:23 simonb Exp $ */
2
3/*-
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Lennart Augustsson (lennart@augustsson.net).

--- 23 unchanged lines hidden (view full) ---

32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/sys/dev/usb2/serial/uftdi2.c 187176 2009-01-13 19:03:47Z thompsa $");
41
42/*
43 * NOTE: all function names beginning like "uftdi_cfg_" can only
44 * be called from within the config thread function !
45 */
46
47/*
48 * FTDI FT8U100AX serial adapter driver

--- 5 unchanged lines hidden (view full) ---

54#include <dev/usb2/include/usb2_error.h>
55#include <dev/usb2/include/usb2_cdc.h>
56
57#define USB_DEBUG_VAR uftdi_debug
58
59#include <dev/usb2/core/usb2_core.h>
60#include <dev/usb2/core/usb2_debug.h>
61#include <dev/usb2/core/usb2_process.h>
62#include <dev/usb2/core/usb2_request.h>
63#include <dev/usb2/core/usb2_lookup.h>
64#include <dev/usb2/core/usb2_util.h>
65#include <dev/usb2/core/usb2_busdma.h>
66
67#include <dev/usb2/serial/usb2_serial.h>
68#include <dev/usb2/serial/uftdi2_reg.h>
69

--- 798 unchanged lines hidden ---