bfa_modules_priv.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. #ifndef __BFA_MODULES_PRIV_H__
  18. #define __BFA_MODULES_PRIV_H__
  19. #include "bfa_uf_priv.h"
  20. #include "bfa_port_priv.h"
  21. #include "bfa_rport_priv.h"
  22. #include "bfa_fcxp_priv.h"
  23. #include "bfa_lps_priv.h"
  24. #include "bfa_fcpim_priv.h"
  25. #include <cee/bfa_cee.h>
  26. #include <port/bfa_port.h>
  27. struct bfa_modules_s {
  28. struct bfa_pport_s pport; /* physical port module */
  29. struct bfa_fcxp_mod_s fcxp_mod; /* fcxp module */
  30. struct bfa_lps_mod_s lps_mod; /* fcxp module */
  31. struct bfa_uf_mod_s uf_mod; /* unsolicited frame module */
  32. struct bfa_rport_mod_s rport_mod; /* remote port module */
  33. struct bfa_fcpim_mod_s fcpim_mod; /* FCP initiator module */
  34. struct bfa_sgpg_mod_s sgpg_mod; /* SG page module */
  35. struct bfa_cee_s cee; /* CEE Module */
  36. struct bfa_port_s port; /* Physical port module */
  37. };
  38. #endif /* __BFA_MODULES_PRIV_H__ */