Deleted Added
full compact
uss820dci_atmelarm.c (217265) uss820dci_atmelarm.c (227843)
1#include <sys/cdefs.h>
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD: head/sys/dev/usb/controller/uss820dci_atmelarm.c 217265 2011-01-11 13:59:06Z jhb $");
2__FBSDID("$FreeBSD: head/sys/dev/usb/controller/uss820dci_atmelarm.c 227843 2011-11-22 21:28:20Z marius $");
3
4/*-
5 * Copyright (c) 2008 Hans Petter Selasky <hselasky@FreeBSD.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:

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

71 /* Device interface */
72 DEVMETHOD(device_probe, uss820_atmelarm_probe),
73 DEVMETHOD(device_attach, uss820_atmelarm_attach),
74 DEVMETHOD(device_detach, uss820_atmelarm_detach),
75 DEVMETHOD(device_suspend, uss820_atmelarm_suspend),
76 DEVMETHOD(device_resume, uss820_atmelarm_resume),
77 DEVMETHOD(device_shutdown, uss820_atmelarm_shutdown),
78
3
4/*-
5 * Copyright (c) 2008 Hans Petter Selasky <hselasky@FreeBSD.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:

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

71 /* Device interface */
72 DEVMETHOD(device_probe, uss820_atmelarm_probe),
73 DEVMETHOD(device_attach, uss820_atmelarm_attach),
74 DEVMETHOD(device_detach, uss820_atmelarm_detach),
75 DEVMETHOD(device_suspend, uss820_atmelarm_suspend),
76 DEVMETHOD(device_resume, uss820_atmelarm_resume),
77 DEVMETHOD(device_shutdown, uss820_atmelarm_shutdown),
78
79 /* Bus interface */
80 DEVMETHOD(bus_print_child, bus_generic_print_child),
81
82 {0, 0}
79 DEVMETHOD_END
83};
84
85static driver_t uss820dci_driver = {
86 .name = "uss820",
87 .methods = uss820dci_methods,
88 .size = sizeof(struct uss820dci_softc),
89};
90

--- 162 unchanged lines hidden ---
80};
81
82static driver_t uss820dci_driver = {
83 .name = "uss820",
84 .methods = uss820dci_methods,
85 .size = sizeof(struct uss820dci_softc),
86};
87

--- 162 unchanged lines hidden ---