Deleted Added
full compact
ugensa.c (192984) ugensa.c (193045)
1/* $FreeBSD: head/sys/dev/usb/serial/ugensa.c 192984 2009-05-28 17:36:36Z thompsa $ */
1/* $FreeBSD: head/sys/dev/usb/serial/ugensa.c 193045 2009-05-29 18:46:57Z thompsa $ */
2/* $NetBSD: ugensa.c,v 1.9.2.1 2007/03/24 14:55:50 yamt Exp $ */
3
4/*
5 * Copyright (c) 2004, 2005 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Roland C. Dowdeswell <elric@netbsd.org>.

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

86};
87
88/* prototypes */
89
90static device_probe_t ugensa_probe;
91static device_attach_t ugensa_attach;
92static device_detach_t ugensa_detach;
93
2/* $NetBSD: ugensa.c,v 1.9.2.1 2007/03/24 14:55:50 yamt Exp $ */
3
4/*
5 * Copyright (c) 2004, 2005 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Roland C. Dowdeswell <elric@netbsd.org>.

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

86};
87
88/* prototypes */
89
90static device_probe_t ugensa_probe;
91static device_attach_t ugensa_attach;
92static device_detach_t ugensa_detach;
93
94static usb2_callback_t ugensa_bulk_write_callback;
95static usb2_callback_t ugensa_bulk_read_callback;
94static usb_callback_t ugensa_bulk_write_callback;
95static usb_callback_t ugensa_bulk_read_callback;
96
97static void ugensa_start_read(struct ucom_softc *);
98static void ugensa_stop_read(struct ucom_softc *);
99static void ugensa_start_write(struct ucom_softc *);
100static void ugensa_stop_write(struct ucom_softc *);
101
102static const struct usb_config
103 ugensa_xfer_config[UGENSA_N_TRANSFER] = {

--- 250 unchanged lines hidden ---
96
97static void ugensa_start_read(struct ucom_softc *);
98static void ugensa_stop_read(struct ucom_softc *);
99static void ugensa_start_write(struct ucom_softc *);
100static void ugensa_stop_write(struct ucom_softc *);
101
102static const struct usb_config
103 ugensa_xfer_config[UGENSA_N_TRANSFER] = {

--- 250 unchanged lines hidden ---