Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile

Pull arch/tile fixes from Chris Metcalf:
"Two one-line bug fixes"

* git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile:
arch/tile: Implement ->set_state_oneshot_stopped()
tile: pass machine size to sparse

+3
+2
arch/tile/Makefile
··· 51 51 BITS := 32 52 52 endif 53 53 54 + CHECKFLAGS += -m$(BITS) 55 + 54 56 head-y := arch/tile/kernel/head_$(BITS).o 55 57 56 58 libs-y += arch/tile/lib/
+1
arch/tile/kernel/time.c
··· 162 162 .set_next_event = tile_timer_set_next_event, 163 163 .set_state_shutdown = tile_timer_shutdown, 164 164 .set_state_oneshot = tile_timer_shutdown, 165 + .set_state_oneshot_stopped = tile_timer_shutdown, 165 166 .tick_resume = tile_timer_shutdown, 166 167 }; 167 168