io_ti.c (35aeb1b31b73359902d8c8031c8dae5d390fd14f) io_ti.c (46388e865273bc67dc29fee9772e1b8b59eaafd3)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Edgeport USB Serial Converter driver
4 *
5 * Copyright (C) 2000-2002 Inside Out Networks, All rights reserved.
6 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
7 *
8 * Supports the following devices:

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

60#define EDGE_READ_URB_STOPPING 1
61#define EDGE_READ_URB_STOPPED 2
62
63
64/* Product information read from the Edgeport */
65struct product_info {
66 int TiMode; /* Current TI Mode */
67 u8 hardware_type; /* Type of hardware */
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Edgeport USB Serial Converter driver
4 *
5 * Copyright (C) 2000-2002 Inside Out Networks, All rights reserved.
6 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
7 *
8 * Supports the following devices:

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

60#define EDGE_READ_URB_STOPPING 1
61#define EDGE_READ_URB_STOPPED 2
62
63
64/* Product information read from the Edgeport */
65struct product_info {
66 int TiMode; /* Current TI Mode */
67 u8 hardware_type; /* Type of hardware */
68} __attribute__((packed));
68} __packed;
69
70/*
71 * Edgeport firmware header
72 *
73 * "build_number" has been set to 0 in all three of the images I have
74 * seen, and Digi Tech Support suggests that it is safe to ignore it.
75 *
76 * "length" is the number of bytes of actual data following the header.

--- 2678 unchanged lines hidden ---
69
70/*
71 * Edgeport firmware header
72 *
73 * "build_number" has been set to 0 in all three of the images I have
74 * seen, and Digi Tech Support suggests that it is safe to ignore it.
75 *
76 * "length" is the number of bytes of actual data following the header.

--- 2678 unchanged lines hidden ---