Merge branch '2019-10-28-azure-ci-support'
[oweals/u-boot.git] / lib / crc32.c
index 71e27df78ebb91cdfc72e05d8e8ad52d7be42d8e..eee21f8d73988e6eb015a680af0dae37eec022da 100644 (file)
@@ -65,7 +65,8 @@ static void __efi_runtime make_crc_table(void)
   int n, k;
   uLong poly;          /* polynomial exclusive-or pattern */
   /* terms of polynomial defining this crc (except x^32): */
-  static const Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
+  static Byte __efi_runtime_data p[] = {
+               0, 1, 2, 4, 5, 7, 8, 10, 11, 12, 16, 22, 23, 26};
 
   /* make exclusive-or pattern from polynomial (0xedb88320L) */
   poly = 0L;