fcptm.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. * This file contains dummy FCPTM routines to aid in Initiator Mode only
  19. * compilation of OS driver.
  20. *
  21. */
  22. #include "bfa_os_inc.h"
  23. #include "fcs_rport.h"
  24. #include "fcs_fcptm.h"
  25. #include "fcs/bfa_fcs_rport.h"
  26. struct bfa_fcs_tin_s *
  27. bfa_fcs_tin_create(struct bfa_fcs_rport_s *rport)
  28. {
  29. return NULL;
  30. }
  31. void
  32. bfa_fcs_tin_delete(struct bfa_fcs_tin_s *tin)
  33. {
  34. }
  35. void
  36. bfa_fcs_tin_rport_offline(struct bfa_fcs_tin_s *tin)
  37. {
  38. }
  39. void
  40. bfa_fcs_tin_rport_online(struct bfa_fcs_tin_s *tin)
  41. {
  42. }
  43. void
  44. bfa_fcs_tin_rx_prli(struct bfa_fcs_tin_s *tin, struct fchs_s *fchs, u16 len)
  45. {
  46. }
  47. void
  48. bfa_fcs_fcptm_uf_recv(struct bfa_fcs_tin_s *tin, struct fchs_s *fchs, u16 len)
  49. {
  50. }
  51. void
  52. bfa_fcs_tin_pause(struct bfa_fcs_tin_s *tin)
  53. {
  54. }
  55. void
  56. bfa_fcs_tin_resume(struct bfa_fcs_tin_s *tin)
  57. {
  58. }