The patch titled i386: mark pit_clockevent static has been removed from the -mm tree. Its filename was i386-mark-pit_clockevent-static.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: i386: mark pit_clockevent static From: Josh Triplett <josht@xxxxxxxxxxxxxxxxxx> Nothing outside of arch/i386/kernel/i8253.c uses pit_clockevent, so mark it static. Eliminates a sparse warning: warning: symbol 'pit_clockevent' was not declared. Should it be static? Signed-off-by: Josh Triplett <josh@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/i8253.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/i8253.c~i386-mark-pit_clockevent-static arch/i386/kernel/i8253.c --- a/arch/x86/kernel/i8253_32.c~i386-mark-pit_clockevent-static +++ a/arch/x86/kernel/i8253_32.c @@ -90,7 +90,7 @@ static int pit_next_event(unsigned long * registered. This mechanism replaces the previous #ifdef LOCAL_APIC - * !using_apic_timer decisions in do_timer_interrupt_hook() */ -struct clock_event_device pit_clockevent = { +static struct clock_event_device pit_clockevent = { .name = "pit", .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, .set_mode = init_pit_timer, _ Patches currently in -mm which might be from josht@xxxxxxxxxxxxxxxxxx are i386-mark-pit_clockevent-static.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html