bfad_im_compat.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 __BFAD_IM_COMPAT_H__
  18. #define __BFAD_IM_COMPAT_H__
  19. extern struct device_attribute *bfad_im_host_attrs[];
  20. extern struct device_attribute *bfad_im_vport_attrs[];
  21. u32 *bfad_get_firmware_buf(struct pci_dev *pdev);
  22. u32 *bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
  23. u32 *bfi_image_size, char *fw_name);
  24. static inline u32 *
  25. bfad_load_fwimg(struct pci_dev *pdev)
  26. {
  27. return bfad_get_firmware_buf(pdev);
  28. }
  29. static inline void
  30. bfad_free_fwimg(void)
  31. {
  32. if (bfi_image_ct_fc_size && bfi_image_ct_fc)
  33. vfree(bfi_image_ct_fc);
  34. if (bfi_image_ct_cna_size && bfi_image_ct_cna)
  35. vfree(bfi_image_ct_cna);
  36. if (bfi_image_cb_fc_size && bfi_image_cb_fc)
  37. vfree(bfi_image_cb_fc);
  38. }
  39. #endif