Update arch/x86_64/ with list initialization. Signed-Off-By: Daniel Walker --- arch/x86_64/kernel/hpet.c | 1 + arch/x86_64/kernel/tsc.c | 1 + 2 files changed, 2 insertions(+) Index: linux-2.6.20/arch/x86_64/kernel/hpet.c =================================================================== --- linux-2.6.20.orig/arch/x86_64/kernel/hpet.c +++ linux-2.6.20/arch/x86_64/kernel/hpet.c @@ -131,6 +131,7 @@ struct clocksource clocksource_hpet = { .shift = HPET_SHIFT, .flags = CLOCK_SOURCE_IS_CONTINUOUS, .vread = vread_hpet, + .list = LIST_HEAD_INIT(clocksource_hpet.list), }; int hpet_arch_init(void) Index: linux-2.6.20/arch/x86_64/kernel/tsc.c =================================================================== --- linux-2.6.20.orig/arch/x86_64/kernel/tsc.c +++ linux-2.6.20/arch/x86_64/kernel/tsc.c @@ -195,6 +195,7 @@ static struct clocksource clocksource_ts .flags = CLOCK_SOURCE_IS_CONTINUOUS | CLOCK_SOURCE_MUST_VERIFY, .vread = vread_tsc, + .list = LIST_HEAD_INIT(clocksource_tsc.list), }; void mark_tsc_unstable(char *reason) -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/