diff options
author | Jing Huang <huangj@brocade.com> | 2009-09-23 20:46:15 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-10-02 10:47:40 -0400 |
commit | 7725ccfda59715ecf8f99e3b520a0b84cc2ea79e (patch) | |
tree | df76910891c6b92bf23c06c84955bf600c9d7573 /drivers/scsi/bfa/bfa_modules_priv.h | |
parent | 5415907af1f5ef80c95147bacbd321b0d4236dd5 (diff) |
[SCSI] bfa: Brocade BFA FC SCSI driver
Add new driver for Brocade Hardware
Signed-off-by: Jing Huang <huangj@brocade.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/bfa/bfa_modules_priv.h')
-rw-r--r-- | drivers/scsi/bfa/bfa_modules_priv.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/drivers/scsi/bfa/bfa_modules_priv.h b/drivers/scsi/bfa/bfa_modules_priv.h new file mode 100644 index 000000000000..96f70534593c --- /dev/null +++ b/drivers/scsi/bfa/bfa_modules_priv.h | |||
@@ -0,0 +1,43 @@ | |||
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_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 */ | ||
41 | }; | ||
42 | |||
43 | #endif /* __BFA_MODULES_PRIV_H__ */ | ||