On Mon, 07 Apr 2025 21:13:26 +0100,
Roman Kisel <romank@xxxxxxxxxxxxxxxxxxx> wrote:
#include <linux/args.h>
#include <linux/init.h>
+
+#ifndef __ASSEMBLER__
+#include <linux/uuid.h>
+#endif
That's a pretty unusual guard in arm64 land. Looking at the current
state of the kernel:
$ git grep -w __ASSEMBLER__ arch/arm64/ | wc -l
2
$ git grep -w __ASSEMBLY__ arch/arm64/ | wc -l
122
I'd suggest the later rather than the former.
Thanks,
M.