Hi all, Today's linux-next merge of the arm-soc tree got a conflict in arch/arm/mach-omap2/board-ti8168evm.c between commit fae51fbd5b0b ("ARM: restart: omap: use new restart hook") from the arm tree and commit a890b6760d97 ("ARM: OMAP: TI814X: Create board support and enable build for TI8148 EVM") from the arm-soc tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc arch/arm/mach-omap2/board-ti8168evm.c index 74713e3,5b6ad6e..0000000 --- a/arch/arm/mach-omap2/board-ti8168evm.c +++ b/arch/arm/mach-omap2/board-ti8168evm.c @@@ -43,10 -47,19 +47,21 @@@ static void __init ti81xx_evm_init(void MACHINE_START(TI8168EVM, "ti8168evm") /* Maintainer: Texas Instruments */ .atag_offset = 0x100, - .map_io = ti8168_evm_map_io, - .init_early = ti816x_init_early, - .init_irq = ti816x_init_irq, + .map_io = ti81xx_map_io, + .init_early = ti81xx_init_early, + .init_irq = ti81xx_init_irq, + .timer = &omap3_timer, + .init_machine = ti81xx_evm_init, ++ .restart = omap_prcm_restart, + MACHINE_END + + MACHINE_START(TI8148EVM, "ti8148evm") + /* Maintainer: Texas Instruments */ + .atag_offset = 0x100, + .map_io = ti81xx_map_io, + .init_early = ti81xx_init_early, + .init_irq = ti81xx_init_irq, .timer = &omap3_timer, - .init_machine = ti8168_evm_init, + .init_machine = ti81xx_evm_init, + .restart = omap_prcm_restart, MACHINE_END