habanalabs: fix endianness when reading cpld version
authorOfir Bitton <obitton@habana.ai>
Wed, 15 Dec 2021 12:48:27 +0000 (14:48 +0200)
committerOded Gabbay <ogabbay@kernel.org>
Sun, 26 Dec 2021 06:59:09 +0000 (08:59 +0200)
Current sysfs implementation does not take endianness into
consideration when dumping the cpld version.

Signed-off-by: Ofir Bitton <obitton@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/sysfs.c

index 2f6de734ce3762dcbf04f28d696af5ad95a350d5..1af568e46f46c584fc15df2f1519cd91e7ef6ab4 100644 (file)
@@ -139,7 +139,7 @@ static ssize_t cpld_ver_show(struct device *dev, struct device_attribute *attr,
        struct hl_device *hdev = dev_get_drvdata(dev);
 
        return sprintf(buf, "0x%08x\n",
-                       hdev->asic_prop.cpucp_info.cpld_version);
+                       le32_to_cpu(hdev->asic_prop.cpucp_info.cpld_version));
 }
 
 static ssize_t cpucp_kernel_ver_show(struct device *dev,