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)
committerStefano Stabellini <sstabellini@kernel.org>
Fri, 19 Mar 2021 19:34:19 +0000 (12:34 -0700)
commitb22b824f2eac90e1f2cac1df407c2e853aa997ed
treeb985aaa7ac0fce2e9ec69ce1479b1fbbb3f836e7
parenta8a6736c976f1ab14439952bd78dfd5bf3daffe9
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>
(cherry picked from commit bfe67a17d4df2efbedaaf5cfbadc8a8627debf5c)
xen/arch/arm/mm.c