Deleted Added
full compact
usb_core.c (190749) usb_core.c (194677)
1/* $FreeBSD: head/sys/dev/usb/usb_core.c 190749 2009-04-05 21:24:15Z piso $ */
1/* $FreeBSD: head/sys/dev/usb/usb_core.c 194677 2009-06-23 02:19:59Z 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.

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

25 */
26
27/*
28 * USB specifications and other documentation can be found at
29 * http://www.usb.org/developers/docs/ and
30 * http://www.usb.org/developers/devclass_docs/
31 */
32
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.

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

25 */
26
27/*
28 * USB specifications and other documentation can be found at
29 * http://www.usb.org/developers/docs/ and
30 * http://www.usb.org/developers/devclass_docs/
31 */
32
33#include <dev/usb/usb_core.h>
34#include <dev/usb/usb_mbuf.h>
33#include <sys/stdint.h>
34#include <sys/stddef.h>
35#include <sys/param.h>
36#include <sys/queue.h>
37#include <sys/types.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/bus.h>
41#include <sys/linker_set.h>
42#include <sys/module.h>
43#include <sys/lock.h>
44#include <sys/mutex.h>
45#include <sys/condvar.h>
46#include <sys/sysctl.h>
47#include <sys/sx.h>
48#include <sys/unistd.h>
49#include <sys/callout.h>
50#include <sys/malloc.h>
51#include <sys/priv.h>
35
52
53#include <dev/usb/usb.h>
54#include <dev/usb/usbdi.h>
55
36MALLOC_DEFINE(M_USB, "USB", "USB");
37MALLOC_DEFINE(M_USBDEV, "USBdev", "USB device");
38MALLOC_DEFINE(M_USBHC, "USBHC", "USB host controller");
39
40MODULE_VERSION(usb, 1);
56MALLOC_DEFINE(M_USB, "USB", "USB");
57MALLOC_DEFINE(M_USBDEV, "USBdev", "USB device");
58MALLOC_DEFINE(M_USBHC, "USBHC", "USB host controller");
59
60MODULE_VERSION(usb, 1);