Deleted Added
full compact
wsp.c (290639) wsp.c (292080)
1/*-
2 * Copyright (c) 2012 Huang Wen Hui
3 * 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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2012 Huang Wen Hui
3 * 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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/usb/input/wsp.c 290639 2015-11-10 09:27:52Z hselasky $");
28__FBSDID("$FreeBSD: head/sys/dev/usb/input/wsp.c 292080 2015-12-11 05:28:00Z imp $");
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/kernel.h>
33#include <sys/malloc.h>
34#include <sys/module.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>

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

1390 .size = sizeof(struct wsp_softc)
1391};
1392
1393static devclass_t wsp_devclass;
1394
1395DRIVER_MODULE(wsp, uhub, wsp_driver, wsp_devclass, NULL, 0);
1396MODULE_DEPEND(wsp, usb, 1, 1, 1);
1397MODULE_VERSION(wsp, 1);
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/kernel.h>
33#include <sys/malloc.h>
34#include <sys/module.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>

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

1390 .size = sizeof(struct wsp_softc)
1391};
1392
1393static devclass_t wsp_devclass;
1394
1395DRIVER_MODULE(wsp, uhub, wsp_driver, wsp_devclass, NULL, 0);
1396MODULE_DEPEND(wsp, usb, 1, 1, 1);
1397MODULE_VERSION(wsp, 1);
1398USB_PNP_HOST_INFO(wsp_devs);