2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
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
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.
18 #ifndef __BFA_MODULES_PRIV_H__
19 #define __BFA_MODULES_PRIV_H__
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>
31 struct bfa_modules_s
{
32 struct bfa_pport_s pport
; /* physical 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 */
43 #endif /* __BFA_MODULES_PRIV_H__ */