root/core/firmware_crc_data.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /* glue to get checksums from generated header in platform/sub into core

   2 if actual data is not available due to missing dump or inability to run tools/make-fw-crc.py

   3 define FIRMWARE_CRC_DISABLED in firmware_crc_data.h

   4 */
   5 
   6 #include "firmware_crc_types.h"
   7 #include "firmware_crc_data.h"
   8 
   9 #ifdef FIRMWARE_CRC_DISABLED
  10 const firmware_crc_desc_t firmware_crc_desc={
  11     (const char *)0, // firmware_ver_ptr

  12     (const firmware_crc_sub_t *)0, // subs

  13     0,  // sub_count

  14     0,  // block_count

  15 };
  16 #endif

/* [<][>][^][v][top][bottom][index][help] */