Deleted Added
full compact
umct.c (217265) umct.c (223486)
1#include <sys/cdefs.h>
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD: head/sys/dev/usb/serial/umct.c 217265 2011-01-11 13:59:06Z jhb $");
2__FBSDID("$FreeBSD: head/sys/dev/usb/serial/umct.c 223486 2011-06-24 02:30:02Z hselasky $");
3
4/*-
5 * Copyright (c) 2003 Scott Long
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:

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

187 .ucom_pre_param = &umct_pre_param,
188 .ucom_start_read = &umct_start_read,
189 .ucom_stop_read = &umct_stop_read,
190 .ucom_start_write = &umct_start_write,
191 .ucom_stop_write = &umct_stop_write,
192 .ucom_poll = &umct_poll,
193};
194
3
4/*-
5 * Copyright (c) 2003 Scott Long
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:

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

187 .ucom_pre_param = &umct_pre_param,
188 .ucom_start_read = &umct_start_read,
189 .ucom_stop_read = &umct_stop_read,
190 .ucom_start_write = &umct_start_write,
191 .ucom_stop_write = &umct_stop_write,
192 .ucom_poll = &umct_poll,
193};
194
195static const struct usb_device_id umct_devs[] = {
195static const STRUCT_USB_HOST_ID umct_devs[] = {
196 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_USB232, 0)},
197 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_SITECOM_USB232, 0)},
198 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_DU_H3SP_USB232, 0)},
199 {USB_VPI(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U109, 0)},
200 {USB_VPI(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U409, 0)},
201};
202
203static device_method_t umct_methods[] = {

--- 436 unchanged lines hidden ---
196 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_USB232, 0)},
197 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_SITECOM_USB232, 0)},
198 {USB_VPI(USB_VENDOR_MCT, USB_PRODUCT_MCT_DU_H3SP_USB232, 0)},
199 {USB_VPI(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U109, 0)},
200 {USB_VPI(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U409, 0)},
201};
202
203static device_method_t umct_methods[] = {

--- 436 unchanged lines hidden ---