Deleted Added
full compact
uvscom.c (192499) uvscom.c (192502)
1/* $NetBSD: usb/uvscom.c,v 1.1 2002/03/19 15:08:42 augustss Exp $ */
2
3#include <sys/cdefs.h>
1/* $NetBSD: usb/uvscom.c,v 1.1 2002/03/19 15:08:42 augustss Exp $ */
2
3#include <sys/cdefs.h>
4__FBSDID("$FreeBSD: head/sys/dev/usb/serial/uvscom.c 192499 2009-05-21 00:04:17Z thompsa $");
4__FBSDID("$FreeBSD: head/sys/dev/usb/serial/uvscom.c 192502 2009-05-21 01:48:42Z thompsa $");
5
6/*-
7 * Copyright (c) 2001-2003, 2005 Shunsuke Akiyama <akiyama@jp.FreeBSD.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

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

53#include <dev/usb/usb_util.h>
54#include <dev/usb/usb_busdma.h>
55
56#include <dev/usb/serial/usb_serial.h>
57
58#if USB_DEBUG
59static int uvscom_debug = 0;
60
5
6/*-
7 * Copyright (c) 2001-2003, 2005 Shunsuke Akiyama <akiyama@jp.FreeBSD.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

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

53#include <dev/usb/usb_util.h>
54#include <dev/usb/usb_busdma.h>
55
56#include <dev/usb/serial/usb_serial.h>
57
58#if USB_DEBUG
59static int uvscom_debug = 0;
60
61SYSCTL_NODE(_hw_usb2, OID_AUTO, uvscom, CTLFLAG_RW, 0, "USB uvscom");
62SYSCTL_INT(_hw_usb2_uvscom, OID_AUTO, debug, CTLFLAG_RW,
61SYSCTL_NODE(_hw_usb, OID_AUTO, uvscom, CTLFLAG_RW, 0, "USB uvscom");
62SYSCTL_INT(_hw_usb_uvscom, OID_AUTO, debug, CTLFLAG_RW,
63 &uvscom_debug, 0, "Debug level");
64#endif
65
66#define UVSCOM_MODVER 1 /* module version */
67
68#define UVSCOM_CONFIG_INDEX 0
69#define UVSCOM_IFACE_INDEX 0
70

--- 641 unchanged lines hidden ---
63 &uvscom_debug, 0, "Debug level");
64#endif
65
66#define UVSCOM_MODVER 1 /* module version */
67
68#define UVSCOM_CONFIG_INDEX 0
69#define UVSCOM_IFACE_INDEX 0
70

--- 641 unchanged lines hidden ---