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:50:30 +0000 (07:50 +0200)
commit566be4969b839411244da8a80342e8da199d03d8
treeca5c43ce0cdf79a06a05dde18cb6a6ddc0af2a8b
parentd26f8af1a126c81b9b28ad7cf05fe946c845c428
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