ddr: altera: Stratix10: Use phys_size_t for memory size
authorTien Fong Chee <tien.fong.chee@intel.com>
Wed, 27 Apr 2022 04:52:42 +0000 (12:52 +0800)
committerTien Fong Chee <tien.fong.chee@intel.com>
Thu, 16 Jun 2022 08:10:58 +0000 (16:10 +0800)
Replace with phys_size_t for all memory size variables declaration
for the sake of scalability. phys_size_t is defined in
/arch/arm/include/asm/types.h.

Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
drivers/ddr/altera/sdram_s10.c

index d3a6d21..4d36fb4 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 /*
- * Copyright (C) 2016-2018 Intel Corporation <www.intel.com>
+ * Copyright (C) 2016-2022 Intel Corporation <www.intel.com>
  *
  */
 
@@ -277,7 +277,7 @@ int sdram_mmr_init_full(struct udevice *dev)
                        DDR_SCH_DEVTODEV);
 
        /* assigning the SDRAM size */
-       unsigned long long size = sdram_calculate_size(plat);
+       phys_size_t size = sdram_calculate_size(plat);
        /* If the size is invalid, use default Config size */
        if (size <= 0)
                hw_size = PHYS_SDRAM_1_SIZE;