powerpc/powermac: Mark variable x as unused
authorMathieu Malaterre <malat@debian.org>
Wed, 4 Apr 2018 20:07:46 +0000 (22:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Aug 2018 05:55:19 +0000 (07:55 +0200)
commite0da21e7e7f18b5a723b7771f709a3e7796b9ca0
tree609e9398f212ad508f81df4686b07ac8b6abc9d0
parent0cd9fd8406a6c8f8dc8f2883caefb5dad36d28fc
powerpc/powermac: Mark variable x as unused

[ Upstream commit 5a4b475cf8511da721f20ba432c244061db7139f ]

Since the value of x is never intended to be read, declare it with gcc
attribute as unused. Fix warning treated as error with W=1:

  arch/powerpc/platforms/powermac/bootx_init.c:471:21: error: variable ‘x’ set but not used [-Werror=unused-but-set-variable]

Suggested-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/powerpc/platforms/powermac/bootx_init.c