umct.c (9b4fcf851a73554063d4a2de9a4f10cd23a0a4f6) | umct.c (f1a16106b6317f4cf5b187daeceda7c1468323c9) |
---|---|
1#include <sys/cdefs.h> 2__FBSDID("$FreeBSD$"); 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 --- 178 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 | 1#include <sys/cdefs.h> 2__FBSDID("$FreeBSD$"); 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 --- 178 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 --- |