[PATCH 06/12] clocksource: i386 initialize list value

2007-01-22 Thread Daniel Walker
Update arch/i386/ with list initialization.

Signed-Off-By: Daniel Walker <[EMAIL PROTECTED]>

---
 arch/i386/kernel/hpet.c  |1 +
 arch/i386/kernel/i8253.c |1 +
 arch/i386/kernel/tsc.c   |1 +
 3 files changed, 3 insertions(+)

Index: linux-2.6.19/arch/i386/kernel/hpet.c
===
--- linux-2.6.19.orig/arch/i386/kernel/hpet.c
+++ linux-2.6.19/arch/i386/kernel/hpet.c
@@ -282,6 +282,7 @@ static struct clocksource clocksource_hp
.mask   = HPET_MASK,
.shift  = HPET_SHIFT,
.is_continuous  = 1,
+   .list   = LIST_HEAD_INIT(clocksource_hpet.list),
 };
 
 static int __init init_hpet_clocksource(void)
Index: linux-2.6.19/arch/i386/kernel/i8253.c
===
--- linux-2.6.19.orig/arch/i386/kernel/i8253.c
+++ linux-2.6.19/arch/i386/kernel/i8253.c
@@ -177,6 +177,7 @@ static struct clocksource clocksource_pi
.mask   = CLOCKSOURCE_MASK(32),
.mult   = 0,
.shift  = 20,
+   .list   = LIST_HEAD_INIT(clocksource_pit.list),
 };
 
 static int __init init_pit_clocksource(void)
Index: linux-2.6.19/arch/i386/kernel/tsc.c
===
--- linux-2.6.19.orig/arch/i386/kernel/tsc.c
+++ linux-2.6.19/arch/i386/kernel/tsc.c
@@ -352,6 +352,7 @@ static struct clocksource clocksource_ts
.shift  = 22,
.update_callback= tsc_update_callback,
.is_continuous  = 1,
+   .list   = LIST_HEAD_INIT(clocksource_tsc.list),
 };
 
 static int tsc_update_callback(void)

-- 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 06/12] clocksource: i386 initialize list value

2007-01-22 Thread Daniel Walker
Update arch/i386/ with list initialization.

Signed-Off-By: Daniel Walker [EMAIL PROTECTED]

---
 arch/i386/kernel/hpet.c  |1 +
 arch/i386/kernel/i8253.c |1 +
 arch/i386/kernel/tsc.c   |1 +
 3 files changed, 3 insertions(+)

Index: linux-2.6.19/arch/i386/kernel/hpet.c
===
--- linux-2.6.19.orig/arch/i386/kernel/hpet.c
+++ linux-2.6.19/arch/i386/kernel/hpet.c
@@ -282,6 +282,7 @@ static struct clocksource clocksource_hp
.mask   = HPET_MASK,
.shift  = HPET_SHIFT,
.is_continuous  = 1,
+   .list   = LIST_HEAD_INIT(clocksource_hpet.list),
 };
 
 static int __init init_hpet_clocksource(void)
Index: linux-2.6.19/arch/i386/kernel/i8253.c
===
--- linux-2.6.19.orig/arch/i386/kernel/i8253.c
+++ linux-2.6.19/arch/i386/kernel/i8253.c
@@ -177,6 +177,7 @@ static struct clocksource clocksource_pi
.mask   = CLOCKSOURCE_MASK(32),
.mult   = 0,
.shift  = 20,
+   .list   = LIST_HEAD_INIT(clocksource_pit.list),
 };
 
 static int __init init_pit_clocksource(void)
Index: linux-2.6.19/arch/i386/kernel/tsc.c
===
--- linux-2.6.19.orig/arch/i386/kernel/tsc.c
+++ linux-2.6.19/arch/i386/kernel/tsc.c
@@ -352,6 +352,7 @@ static struct clocksource clocksource_ts
.shift  = 22,
.update_callback= tsc_update_callback,
.is_continuous  = 1,
+   .list   = LIST_HEAD_INIT(clocksource_tsc.list),
 };
 
 static int tsc_update_callback(void)

-- 
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/