xen/arm: mm: Remove ; at the end of mm_printk()
authorJulien Grall <jgrall@amazon.com>
Thu, 19 Nov 2020 19:07:47 +0000 (19:07 +0000)
committerJulien Grall <jgrall@amazon.com>
Sat, 23 Jan 2021 11:41:45 +0000 (11:41 +0000)
commitbfe67a17d4df2efbedaaf5cfbadc8a8627debf5c
tree7865a671d1e861b9ffb8b446ed76ca504aa7cfd4
parentd90390d031554337f4fc9c98045d5a9ef71e6f23
xen/arm: mm: Remove ; at the end of mm_printk()

The ; at the end of mm_printk() means the following code will not build
correctly:

if ( ... )
    mm_printk(...);
else
    ...

As we treat the macro as a function, we want to remove the ; at the end
of it.

Signed-off-by: Julien Grall <jgrall@amazon.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
xen/arch/arm/mm.c