kaweth.c (03ab8e6297acd1bc0eedaa050e2a1635c576fd11) | kaweth.c (efe3e6b5aeefaabed9ad5dcb3682b581bf34c187) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/**************************************************************** 3 * 4 * kaweth.c - driver for KL5KUSB101 based USB->Ethernet 5 * 6 * (c) 2000 Interlan Communications 7 * (c) 2000 Stephane Alnet 8 * (C) 2001 Brad Hards --- 207 unchanged lines hidden (view full) --- 216 struct urb *tx_urb; 217 struct urb *irq_urb; 218 219 dma_addr_t intbufferhandle; 220 __u8 *intbuffer; 221 dma_addr_t rxbufferhandle; 222 __u8 *rx_buf; 223 | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/**************************************************************** 3 * 4 * kaweth.c - driver for KL5KUSB101 based USB->Ethernet 5 * 6 * (c) 2000 Interlan Communications 7 * (c) 2000 Stephane Alnet 8 * (C) 2001 Brad Hards --- 207 unchanged lines hidden (view full) --- 216 struct urb *tx_urb; 217 struct urb *irq_urb; 218 219 dma_addr_t intbufferhandle; 220 __u8 *intbuffer; 221 dma_addr_t rxbufferhandle; 222 __u8 *rx_buf; 223 |
224 | 224 |
225 struct sk_buff *tx_skb; 226 227 __u8 *firmware_buf; 228 __u8 scratch[KAWETH_SCRATCH_SIZE]; 229 __u16 packet_filter_bitmap; 230 231 struct kaweth_ethernet_configuration configuration; 232}; --- 883 unchanged lines hidden --- | 225 struct sk_buff *tx_skb; 226 227 __u8 *firmware_buf; 228 __u8 scratch[KAWETH_SCRATCH_SIZE]; 229 __u16 packet_filter_bitmap; 230 231 struct kaweth_ethernet_configuration configuration; 232}; --- 883 unchanged lines hidden --- |