dev_info(hdev->dev, "Found %s device with %lluGB DRAM\n",
                hdev->asic_name,
-               hdev->asic_prop.dram_size / 1024 / 1024 / 1024);
+               hdev->asic_prop.dram_size / SZ_1G);
 
        rc = hl_vm_init(hdev);
        if (rc) {
 
        }
 }
 
-static int gaudi_get_fixed_properties(struct hl_device *hdev)
+static int gaudi_set_fixed_properties(struct hl_device *hdev)
 {
        struct asic_fixed_properties *prop = &hdev->asic_prop;
        u32 num_sync_stream_queues = 0;
        u32 fw_boot_status;
        int rc;
 
-       rc = gaudi_get_fixed_properties(hdev);
+       rc = gaudi_set_fixed_properties(hdev);
        if (rc) {
-               dev_err(hdev->dev, "Failed to get fixed properties\n");
+               dev_err(hdev->dev, "Failed setting fixed properties\n");
                return rc;
        }
 
 
 static int goya_mmu_add_mappings_for_device_cpu(struct hl_device *hdev);
 static void goya_mmu_prepare(struct hl_device *hdev, u32 asid);
 
-int goya_get_fixed_properties(struct hl_device *hdev)
+int goya_set_fixed_properties(struct hl_device *hdev)
 {
        struct asic_fixed_properties *prop = &hdev->asic_prop;
        int i;
        u32 fw_boot_status, val;
        int rc;
 
-       rc = goya_get_fixed_properties(hdev);
+       rc = goya_set_fixed_properties(hdev);
        if (rc) {
                dev_err(hdev->dev, "Failed to get fixed properties\n");
                return rc;
 
        u8              device_cpu_mmu_mappings_done;
 };
 
-int goya_get_fixed_properties(struct hl_device *hdev);
+int goya_set_fixed_properties(struct hl_device *hdev);
 int goya_mmu_init(struct hl_device *hdev);
 void goya_init_dma_qmans(struct hl_device *hdev);
 void goya_init_mme_qmans(struct hl_device *hdev);