upload tizen1.0 source
[kernel/linux-2.6.36.git] / drivers / scsi / bfa / bfa_modules_priv.h
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 #ifndef __BFA_MODULES_PRIV_H__
19 #define __BFA_MODULES_PRIV_H__
20
21 #include "bfa_uf_priv.h"
22 #include "bfa_port_priv.h"
23 #include "bfa_rport_priv.h"
24 #include "bfa_fcxp_priv.h"
25 #include "bfa_lps_priv.h"
26 #include "bfa_fcpim_priv.h"
27 #include <cee/bfa_cee.h>
28 #include <port/bfa_port.h>
29
30
31 struct bfa_modules_s {
32         struct bfa_fcport_s     fcport; /*  fc port module      */
33         struct bfa_fcxp_mod_s fcxp_mod; /*  fcxp module         */
34         struct bfa_lps_mod_s lps_mod;   /*  fcxp module         */
35         struct bfa_uf_mod_s uf_mod;     /*  unsolicited frame module    */
36         struct bfa_rport_mod_s rport_mod; /*  remote port module        */
37         struct bfa_fcpim_mod_s fcpim_mod; /*  FCP initiator module      */
38         struct bfa_sgpg_mod_s sgpg_mod; /*  SG page module              */
39         struct bfa_cee_s cee;           /*  CEE Module                 */
40         struct bfa_port_s port;         /*  Physical port module        */
41 };
42
43 #endif /* __BFA_MODULES_PRIV_H__ */