Deleted Added
full compact
ucycom.c (199816) ucycom.c (212122)
1#include <sys/cdefs.h>
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD: head/sys/dev/usb/serial/ucycom.c 199816 2009-11-26 00:43:17Z thompsa $");
2__FBSDID("$FreeBSD: head/sys/dev/usb/serial/ucycom.c 212122 2010-09-01 23:47:53Z thompsa $");
3
4/*-
5 * Copyright (c) 2004 Dag-Erling Co�dan Sm�rgrav
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:

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

171 .name = "ucycom",
172 .methods = ucycom_methods,
173 .size = sizeof(struct ucycom_softc),
174};
175
176DRIVER_MODULE(ucycom, uhub, ucycom_driver, ucycom_devclass, NULL, 0);
177MODULE_DEPEND(ucycom, ucom, 1, 1, 1);
178MODULE_DEPEND(ucycom, usb, 1, 1, 1);
3
4/*-
5 * Copyright (c) 2004 Dag-Erling Co�dan Sm�rgrav
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:

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

171 .name = "ucycom",
172 .methods = ucycom_methods,
173 .size = sizeof(struct ucycom_softc),
174};
175
176DRIVER_MODULE(ucycom, uhub, ucycom_driver, ucycom_devclass, NULL, 0);
177MODULE_DEPEND(ucycom, ucom, 1, 1, 1);
178MODULE_DEPEND(ucycom, usb, 1, 1, 1);
179MODULE_VERSION(ucycom, 1);
179
180/*
181 * Supported devices
182 */
183static const struct usb_device_id ucycom_devs[] = {
184 {USB_VPI(USB_VENDOR_DELORME, USB_PRODUCT_DELORME_EARTHMATE, MODEL_CY7C64013)},
185};
186

--- 403 unchanged lines hidden ---
180
181/*
182 * Supported devices
183 */
184static const struct usb_device_id ucycom_devs[] = {
185 {USB_VPI(USB_VENDOR_DELORME, USB_PRODUCT_DELORME_EARTHMATE, MODEL_CY7C64013)},
186};
187

--- 403 unchanged lines hidden ---