Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca43784d authored by Paul Gortmaker's avatar Paul Gortmaker Committed by Olof Johansson
Browse files

ARM: bcmring: fix build failure in mach-bcmring/arch.c



Upstream commit d1fce9c1

   "ARM: restart: bcmring: use new restart hook"

breaks building of this platform, since what used to be the
last field of the MACHINE_START/END block didn't have a
trailing comma.  Once another field was added below, we get:

arch/arm/mach-bcmring/arch.c:198: error: request for member 'restart' in something not a structure or union

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: default avatarJiandong Zheng <jdzheng@broadcom.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 864e5e36
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,6 +194,6 @@ MACHINE_START(BCMRING, "BCMRING")
	.init_early = bcmring_init_early,
	.init_irq = bcmring_init_irq,
	.timer = &bcmring_timer,
	.init_machine = bcmring_init_machine
	.init_machine = bcmring_init_machine,
	.restart = bcmring_restart,
MACHINE_END