Deleted Added
full compact
cxgb_t3_hw.c (219945) cxgb_t3_hw.c (249582)
1/**************************************************************************
2
3Copyright (c) 2007-2009, Chelsio Inc.
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8

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

23INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26POSSIBILITY OF SUCH DAMAGE.
27
28***************************************************************************/
29
30#include <sys/cdefs.h>
1/**************************************************************************
2
3Copyright (c) 2007-2009, Chelsio Inc.
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8

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

23INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26POSSIBILITY OF SUCH DAMAGE.
27
28***************************************************************************/
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/cxgb/common/cxgb_t3_hw.c 219945 2011-03-24 01:13:28Z np $");
31__FBSDID("$FreeBSD: head/sys/dev/cxgb/common/cxgb_t3_hw.c 249582 2013-04-17 11:40:10Z gabor $");
32
33
34#include <cxgb_include.h>
35
36#undef msleep
37#define msleep t3_os_sleep
38
39/**

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

1722};
1723
1724/**
1725 * t3_handle_intr_status - table driven interrupt handler
1726 * @adapter: the adapter that generated the interrupt
1727 * @reg: the interrupt status register to process
1728 * @mask: a mask to apply to the interrupt status
1729 * @acts: table of interrupt actions
32
33
34#include <cxgb_include.h>
35
36#undef msleep
37#define msleep t3_os_sleep
38
39/**

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

1722};
1723
1724/**
1725 * t3_handle_intr_status - table driven interrupt handler
1726 * @adapter: the adapter that generated the interrupt
1727 * @reg: the interrupt status register to process
1728 * @mask: a mask to apply to the interrupt status
1729 * @acts: table of interrupt actions
1730 * @stats: statistics counters tracking interrupt occurences
1730 * @stats: statistics counters tracking interrupt occurrences
1731 *
1732 * A table driven interrupt handler that applies a set of masks to an
1733 * interrupt status word and performs the corresponding actions if the
1734 * interrupts described by the mask have occured. The actions include
1735 * optionally printing a warning or alert message, and optionally
1736 * incrementing a stat counter. The table is terminated by an entry
1737 * specifying mask 0. Returns the number of fatal interrupt conditions.
1738 */

--- 3053 unchanged lines hidden ---
1731 *
1732 * A table driven interrupt handler that applies a set of masks to an
1733 * interrupt status word and performs the corresponding actions if the
1734 * interrupts described by the mask have occured. The actions include
1735 * optionally printing a warning or alert message, and optionally
1736 * incrementing a stat counter. The table is terminated by an entry
1737 * specifying mask 0. Returns the number of fatal interrupt conditions.
1738 */

--- 3053 unchanged lines hidden ---