Deleted Added
full compact
linux_usb.c (246122) linux_usb.c (246128)
1/* $FreeBSD: head/sys/dev/usb/usb_compat_linux.c 246122 2013-01-30 15:26:04Z hselasky $ */
1/* $FreeBSD: head/sys/dev/usb/usb_compat_linux.c 246128 2013-01-30 18:01:20Z sbz $ */
2/*-
3 * Copyright (c) 2007 Luigi Rizzo - Universita` di Pisa. All rights reserved.
4 * Copyright (c) 2007 Hans Petter Selasky. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright

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

108static device_method_t usb_linux_methods[] = {
109 /* Device interface */
110 DEVMETHOD(device_probe, usb_linux_probe),
111 DEVMETHOD(device_attach, usb_linux_attach),
112 DEVMETHOD(device_detach, usb_linux_detach),
113 DEVMETHOD(device_suspend, usb_linux_suspend),
114 DEVMETHOD(device_resume, usb_linux_resume),
115
2/*-
3 * Copyright (c) 2007 Luigi Rizzo - Universita` di Pisa. All rights reserved.
4 * Copyright (c) 2007 Hans Petter Selasky. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright

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

108static device_method_t usb_linux_methods[] = {
109 /* Device interface */
110 DEVMETHOD(device_probe, usb_linux_probe),
111 DEVMETHOD(device_attach, usb_linux_attach),
112 DEVMETHOD(device_detach, usb_linux_detach),
113 DEVMETHOD(device_suspend, usb_linux_suspend),
114 DEVMETHOD(device_resume, usb_linux_resume),
115
116 {0, 0}
116 DEVMETHOD_END
117};
118
119static driver_t usb_linux_driver = {
120 .name = "usb_linux",
121 .methods = usb_linux_methods,
122 .size = sizeof(struct usb_linux_softc),
123};
124

--- 1612 unchanged lines hidden ---
117};
118
119static driver_t usb_linux_driver = {
120 .name = "usb_linux",
121 .methods = usb_linux_methods,
122 .size = sizeof(struct usb_linux_softc),
123};
124

--- 1612 unchanged lines hidden ---