Deleted Added
full compact
usb_device.h (190730) usb_device.h (190734)
1/* $FreeBSD: head/sys/dev/usb/usb_device.h 190730 2009-04-05 18:19:52Z thompsa $ */
1/* $FreeBSD: head/sys/dev/usb/usb_device.h 190734 2009-04-05 18:20:38Z thompsa $ */
2/*-
3 * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.

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

114 * messages */
115 struct sx default_sx[2];
116 struct mtx default_mtx[1];
117 struct cv default_cv[2];
118 struct usb2_interface *ifaces;
119 struct usb2_pipe default_pipe; /* Control Endpoint 0 */
120 struct usb2_pipe *pipes;
121 struct usb2_power_save pwr_save;/* power save data */
2/*-
3 * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.

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

114 * messages */
115 struct sx default_sx[2];
116 struct mtx default_mtx[1];
117 struct cv default_cv[2];
118 struct usb2_interface *ifaces;
119 struct usb2_pipe default_pipe; /* Control Endpoint 0 */
120 struct usb2_pipe *pipes;
121 struct usb2_power_save pwr_save;/* power save data */
122
123 struct usb2_bus *bus; /* our USB BUS */
124 device_t parent_dev; /* parent device */
125 struct usb2_device *parent_hub;
126 struct usb2_config_descriptor *cdesc; /* full config descr */
127 struct usb2_hub *hub; /* only if this is a hub */
128#if USB_HAVE_COMPAT_LINUX
129 struct usb_device *linux_dev;
130#endif

--- 80 unchanged lines hidden ---
122 struct usb2_bus *bus; /* our USB BUS */
123 device_t parent_dev; /* parent device */
124 struct usb2_device *parent_hub;
125 struct usb2_config_descriptor *cdesc; /* full config descr */
126 struct usb2_hub *hub; /* only if this is a hub */
127#if USB_HAVE_COMPAT_LINUX
128 struct usb_device *linux_dev;
129#endif

--- 80 unchanged lines hidden ---