WriteFirmware.c 946 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteFirmware (struct plc * plc, unsigned module, void const * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * call appropriate function based on the image file format;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef WRITEFIRMWARE_SOURCE
  21. #define WRITEFIRMWARE_SOURCE
  22. #include "../plc/plc.h"
  23. signed WriteFirmware (struct plc * plc, unsigned module, void const * nvm_header)
  24. {
  25. return ((LE32TOH (* (uint32_t *) (nvm_header)) == 0x60000000)? WriteFirmware1 (plc, module, nvm_header): WriteFirmware2 (plc, module, nvm_header));
  26. }
  27. #endif