Deleted Added
full compact
ql_def.h (256281) ql_def.h (284982)
1/*
1/*
2 * Copyright (c) 2013-2014 Qlogic Corporation
2 * Copyright (c) 2013-2016 Qlogic Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.

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

19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 *
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.

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

19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 *
27 * $FreeBSD: stable/10/sys/dev/qlxgbe/ql_def.h 250661 2013-05-15 17:03:09Z davidcs $
27 * $FreeBSD: stable/10/sys/dev/qlxgbe/ql_def.h 284982 2015-06-30 20:59:07Z davidcs $
28 */
29
30/*
31 * File: ql_def.h
32 * Author : David C Somayajulu, Qlogic Corporation, Aliso Viejo, CA 92656.
33 */
34
35#ifndef _QL_DEF_H_

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

227
228 uint8_t fw_ver_str[32];
229
230 /* Error Injection Related */
231 uint32_t err_inject;
232 struct task err_task;
233 struct taskqueue *err_tq;
234
28 */
29
30/*
31 * File: ql_def.h
32 * Author : David C Somayajulu, Qlogic Corporation, Aliso Viejo, CA 92656.
33 */
34
35#ifndef _QL_DEF_H_

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

227
228 uint8_t fw_ver_str[32];
229
230 /* Error Injection Related */
231 uint32_t err_inject;
232 struct task err_task;
233 struct taskqueue *err_tq;
234
235 /* Async Event Related */
236 uint32_t async_event;
237 struct task async_event_task;
238 struct taskqueue *async_event_tq;
239
235 /* Peer Device */
236 device_t peer_dev;
237
238 volatile uint32_t msg_from_peer;
239#define QL_PEER_MSG_RESET 0x01
240#define QL_PEER_MSG_ACK 0x02
241
242};

--- 16 unchanged lines hidden ---
240 /* Peer Device */
241 device_t peer_dev;
242
243 volatile uint32_t msg_from_peer;
244#define QL_PEER_MSG_RESET 0x01
245#define QL_PEER_MSG_ACK 0x02
246
247};

--- 16 unchanged lines hidden ---