Deleted Added
full compact
umoscom.c (207077) umoscom.c (212122)
1/* $FreeBSD: head/sys/dev/usb/serial/umoscom.c 207077 2010-04-22 21:31:34Z thompsa $ */
1/* $FreeBSD: head/sys/dev/usb/serial/umoscom.c 212122 2010-09-01 23:47:53Z thompsa $ */
2/* $OpenBSD: umoscom.c,v 1.2 2006/10/26 06:02:43 jsg Exp $ */
3
4/*
5 * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

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

274 .name = "umoscom",
275 .methods = umoscom_methods,
276 .size = sizeof(struct umoscom_softc),
277};
278
279DRIVER_MODULE(umoscom, uhub, umoscom_driver, umoscom_devclass, NULL, 0);
280MODULE_DEPEND(umoscom, ucom, 1, 1, 1);
281MODULE_DEPEND(umoscom, usb, 1, 1, 1);
2/* $OpenBSD: umoscom.c,v 1.2 2006/10/26 06:02:43 jsg Exp $ */
3
4/*
5 * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

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

274 .name = "umoscom",
275 .methods = umoscom_methods,
276 .size = sizeof(struct umoscom_softc),
277};
278
279DRIVER_MODULE(umoscom, uhub, umoscom_driver, umoscom_devclass, NULL, 0);
280MODULE_DEPEND(umoscom, ucom, 1, 1, 1);
281MODULE_DEPEND(umoscom, usb, 1, 1, 1);
282MODULE_VERSION(umoscom, 1);
282
283static const struct usb_device_id umoscom_devs[] = {
284 {USB_VPI(USB_VENDOR_MOSCHIP, USB_PRODUCT_MOSCHIP_MCS7703, 0)}
285};
286
287static int
288umoscom_probe(device_t dev)
289{

--- 416 unchanged lines hidden ---
283
284static const struct usb_device_id umoscom_devs[] = {
285 {USB_VPI(USB_VENDOR_MOSCHIP, USB_PRODUCT_MOSCHIP_MCS7703, 0)}
286};
287
288static int
289umoscom_probe(device_t dev)
290{

--- 416 unchanged lines hidden ---