diff mbox series

[v1,1/8] xen/riscv: introduce dummy asm/init.h

Message ID cb2f0751d717774dfe065727c87b8f62f588ca17.1673009740.git.oleksii.kurochko@gmail.com (mailing list archive)
State Superseded
Headers show
Series Basic early_printk and smoke test implementation | expand

Commit Message

Oleksii Kurochko Jan. 6, 2023, 1:14 p.m. UTC
Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>
---
 xen/arch/riscv/include/asm/init.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 xen/arch/riscv/include/asm/init.h

Comments

Julien Grall Jan. 6, 2023, 1:42 p.m. UTC | #1
On 06/01/2023 13:14, Oleksii Kurochko wrote:

I am guessing this is necessary because you will use <xen/init.h> will 
be used later on.

If so, then I think it would be useful for mention it in the commit message.

> Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>

Reviewed-by: Julien Grall <jgrall@amazon.com>

Cheers,
Oleksii Kurochko Jan. 9, 2023, 8:53 a.m. UTC | #2
Thanks for the comments. I'll update commit message in the next
patch series.

~Oleksii
On Fri, 2023-01-06 at 13:42 +0000, Julien Grall wrote:
> On 06/01/2023 13:14, Oleksii Kurochko wrote:
> 
> I am guessing this is necessary because you will use <xen/init.h>
> will 
> be used later on.
> 
> If so, then I think it would be useful for mention it in the commit
> message.
> 
> > Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>
> 
> Reviewed-by: Julien Grall <jgrall@amazon.com>
> 
> Cheers,
>
diff mbox series

Patch

diff --git a/xen/arch/riscv/include/asm/init.h b/xen/arch/riscv/include/asm/init.h
new file mode 100644
index 0000000000..237ec25e4e
--- /dev/null
+++ b/xen/arch/riscv/include/asm/init.h
@@ -0,0 +1,12 @@ 
+#ifndef _XEN_ASM_INIT_H
+#define _XEN_ASM_INIT_H
+
+#endif /* _XEN_ASM_INIT_H */
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ */