• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/bfa/
1/*
2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
3 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 */
17
18/**
19 *  bfad_trcmod.h Linux driver trace modules
20 */
21
22
23#ifndef __BFAD_TRCMOD_H__
24#define __BFAD_TRCMOD_H__
25
26#include <cs/bfa_trc.h>
27
28/*
29 * !!! Only append to the enums defined here to avoid any versioning
30 * !!! needed between trace utility and driver version
31 */
32enum {
33	/* 2.6 Driver */
34	BFA_TRC_LDRV_BFAD		= 1,
35	BFA_TRC_LDRV_BFAD_2_6		= 2,
36	BFA_TRC_LDRV_BFAD_2_6_9		= 3,
37	BFA_TRC_LDRV_BFAD_2_6_10	= 4,
38	BFA_TRC_LDRV_INTR		= 5,
39	BFA_TRC_LDRV_IOCTL		= 6,
40	BFA_TRC_LDRV_OS			= 7,
41	BFA_TRC_LDRV_IM			= 8,
42	BFA_TRC_LDRV_IM_2_6		= 9,
43	BFA_TRC_LDRV_IM_2_6_9		= 10,
44	BFA_TRC_LDRV_IM_2_6_10		= 11,
45	BFA_TRC_LDRV_TM			= 12,
46	BFA_TRC_LDRV_IPFC		= 13,
47	BFA_TRC_LDRV_IM_2_4		= 14,
48	BFA_TRC_LDRV_IM_VMW		= 15,
49	BFA_TRC_LDRV_IM_LT_2_6_10	= 16,
50};
51
52#endif /* __BFAD_TRCMOD_H__ */
53