On Wed, 6 Nov 2024 12:53:14 +0530 Meghana Malladi wrote:Yeah sure, I have updated it.
+static inline __u64 icssg_readq(const void __iomem *addr)
two nit picks:
- since the function is now fairly special purpose I think a name less
generic than readq would be appropriate. Maybe icssg_read_time() ?
- __u64 is for uAPI, to avoid type name conflicts, in the kernel
please use u64 without the underscores