Deleted Added
full compact
umodem.c (188413) umodem.c (188746)
1/* $NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $ */
2
3#include <sys/cdefs.h>
1/* $NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $ */
2
3#include <sys/cdefs.h>
4__FBSDID("$FreeBSD: head/sys/dev/usb2/serial/umodem2.c 188413 2009-02-09 22:05:25Z thompsa $");
4__FBSDID("$FreeBSD: head/sys/dev/usb2/serial/umodem2.c 188746 2009-02-18 06:33:10Z thompsa $");
5
6/*-
7 * Copyright (c) 2003, M. Warner Losh <imp@freebsd.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

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

74/*
75 * TODO:
76 * - Add error recovery in various places; the big problem is what
77 * to do in a callback if there is an error.
78 * - Implement a Call Device for modems without multiplexed commands.
79 *
80 */
81
5
6/*-
7 * Copyright (c) 2003, M. Warner Losh <imp@freebsd.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

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

74/*
75 * TODO:
76 * - Add error recovery in various places; the big problem is what
77 * to do in a callback if there is an error.
78 * - Implement a Call Device for modems without multiplexed commands.
79 *
80 */
81
82#include <dev/usb2/include/usb2_devid.h>
82#include "usbdevs.h"
83#include <dev/usb2/include/usb2_standard.h>
84#include <dev/usb2/include/usb2_mfunc.h>
85#include <dev/usb2/include/usb2_error.h>
86#include <dev/usb2/include/usb2_cdc.h>
87#include <dev/usb2/include/usb2_ioctl.h>
88#include <dev/usb2/include/usb2_defs.h>
89
90#define USB_DEBUG_VAR umodem_debug

--- 698 unchanged lines hidden ---
83#include <dev/usb2/include/usb2_standard.h>
84#include <dev/usb2/include/usb2_mfunc.h>
85#include <dev/usb2/include/usb2_error.h>
86#include <dev/usb2/include/usb2_cdc.h>
87#include <dev/usb2/include/usb2_ioctl.h>
88#include <dev/usb2/include/usb2_defs.h>
89
90#define USB_DEBUG_VAR umodem_debug

--- 698 unchanged lines hidden ---