From 5fcd220b7ddf241bda69c473fb7b21efad4eab27 Mon Sep 17 00:00:00 2001 From: Art Haas Date: Thu, 7 Nov 2002 19:18:36 -0800 Subject: [PATCH] C99 designated initializer for kernel/cpufreq.c --- kernel/cpufreq.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kernel') diff --git a/kernel/cpufreq.c b/kernel/cpufreq.c index f93c394b5a66..74b54ac2cea7 100644 --- a/kernel/cpufreq.c +++ b/kernel/cpufreq.c @@ -677,19 +677,19 @@ static ctl_table ctl_cpu_table[NR_CPUS + 1] = { #error please extend CPU enumeration #endif { - ctl_name: 0, + .ctl_name = 0, } }; static ctl_table ctl_cpu[2] = { { - ctl_name: CTL_CPU, - procname: "cpu", - mode: 0555, - child: ctl_cpu_table, + .ctl_name = CTL_CPU, + .procname = "cpu", + .mode = 0555, + .child = ctl_cpu_table, }, { - ctl_name: 0, + .ctl_name = 0, } }; -- cgit v1.2.3