]> git.pld-linux.org Git - packages/kernel.git/blame - 2.6.0-t3.c99.arch-lkml.patch
- minor fix. it builds but linking needs fix.
[packages/kernel.git] / 2.6.0-t3.c99.arch-lkml.patch
CommitLineData
12f2d15d 1diff -aur linux.backup/arch/alpha/kernel/core_titan.c linux/arch/alpha/kernel/core_titan.c
2--- linux.backup/arch/alpha/kernel/core_titan.c Sat Aug 16 15:02:35 2003
3+++ linux/arch/alpha/kernel/core_titan.c Sun Aug 17 00:34:00 2003
4@@ -718,12 +718,12 @@
5
6 struct alpha_agp_ops titan_agp_ops =
7 {
8- setup: titan_agp_setup,
9- cleanup: titan_agp_cleanup,
10- configure: titan_agp_configure,
11- bind: titan_agp_bind_memory,
12- unbind: titan_agp_unbind_memory,
13- translate: titan_agp_translate
14+ .setup = titan_agp_setup,
15+ .cleanup = titan_agp_cleanup,
16+ .configure = titan_agp_configure,
17+ .bind = titan_agp_bind_memory,
18+ .unbind = titan_agp_unbind_memory,
19+ .translate = titan_agp_translate
20 };
21
22 alpha_agp_info *
23diff -aur linux.backup/arch/arm/kernel/apm.c linux/arch/arm/kernel/apm.c
24--- linux.backup/arch/arm/kernel/apm.c Thu Jun 26 23:44:05 2003
25+++ linux/arch/arm/kernel/apm.c Sat Aug 16 17:54:50 2003
26@@ -388,18 +388,18 @@
27 }
28
29 static struct file_operations apm_bios_fops = {
30- owner: THIS_MODULE,
31- read: apm_read,
32- poll: apm_poll,
33- ioctl: apm_ioctl,
34- open: apm_open,
35- release: apm_release,
36+ .owner = THIS_MODULE,
37+ .read = apm_read,
38+ .poll = apm_poll,
39+ .ioctl = apm_ioctl,
40+ .open = apm_open,
41+ .release = apm_release,
42 };
43
44 static struct miscdevice apm_device = {
45- minor: APM_MINOR_DEV,
46- name: "apm_bios",
47- fops: &apm_bios_fops
48+ .minor = APM_MINOR_DEV,
49+ .name = "apm_bios",
50+ .fops = &apm_bios_fops
51 };
52
53
54diff -aur linux.backup/arch/arm26/kernel/setup.c linux/arch/arm26/kernel/setup.c
55--- linux.backup/arch/arm26/kernel/setup.c Sat Aug 16 15:02:16 2003
56+++ linux/arch/arm26/kernel/setup.c Sat Aug 16 17:55:12 2003
57@@ -304,12 +304,12 @@
58
59 #if defined(CONFIG_DUMMY_CONSOLE)
60 struct screen_info screen_info = {
61- orig_video_lines: 30,
62- orig_video_cols: 80,
63- orig_video_mode: 0,
64- orig_video_ega_bx: 0,
65- orig_video_isVGA: 1,
66- orig_video_points: 8
67+ .orig_video_lines = 30,
68+ .orig_video_cols = 80,
69+ .orig_video_mode = 0,
70+ .orig_video_ega_bx = 0,
71+ .orig_video_isVGA = 1,
72+ .orig_video_points = 8
73 };
74
75 static int __init parse_tag_videotext(const struct tag *tag)
76diff -aur linux.backup/arch/cris/arch-v10/drivers/pcf8563.c linux/arch/cris/arch-v10/drivers/pcf8563.c
77--- linux.backup/arch/cris/arch-v10/drivers/pcf8563.c Sat Aug 16 15:02:35 2003
78+++ linux/arch/cris/arch-v10/drivers/pcf8563.c Sat Aug 16 15:44:59 2003
79@@ -57,10 +57,10 @@
80 int pcf8563_release(struct inode *, struct file *);
81
82 static struct file_operations pcf8563_fops = {
83- owner: THIS_MODULE,
84- ioctl: pcf8563_ioctl,
85- open: pcf8563_open,
86- release: pcf8563_release,
87+ .owner = THIS_MODULE,
88+ .ioctl = pcf8563_ioctl,
89+ .open = pcf8563_open,
90+ .release = pcf8563_release,
91 };
92
93 unsigned char
94diff -aur linux.backup/arch/h8300/kernel/setup.c linux/arch/h8300/kernel/setup.c
95--- linux.backup/arch/h8300/kernel/setup.c Sat Aug 16 15:02:35 2003
96+++ linux/arch/h8300/kernel/setup.c Sat Aug 16 15:45:00 2003
97@@ -91,12 +91,12 @@
98 }
99
100 static const struct console gdb_console = {
101- name: "gdb_con",
102- write: gdb_console_output,
103- device: NULL,
104- setup: gdb_console_setup,
105- flags: CON_PRINTBUFFER,
106- index: -1,
107+ .name = "gdb_con",
108+ .write = gdb_console_output,
109+ .device = NULL,
110+ .setup = gdb_console_setup,
111+ .flags = CON_PRINTBUFFER,
112+ .index = -1,
113 };
114 #endif
115
116@@ -260,8 +260,8 @@
117 }
118
119 struct seq_operations cpuinfo_op = {
120- start: c_start,
121- next: c_next,
122- stop: c_stop,
123- show: show_cpuinfo,
124+ .start = c_start,
125+ .next = c_next,
126+ .stop = c_stop,
127+ .show = show_cpuinfo,
128 };
129diff -aur linux.backup/arch/ppc64/kernel/proc_ppc64.c linux/arch/ppc64/kernel/proc_ppc64.c
130--- linux.backup/arch/ppc64/kernel/proc_ppc64.c Thu Jun 26 23:46:16 2003
131+++ linux/arch/ppc64/kernel/proc_ppc64.c Sat Aug 16 18:09:20 2003
132@@ -47,9 +47,9 @@
133 static int page_map_mmap( struct file *file, struct vm_area_struct *vma );
134
135 static struct file_operations page_map_fops = {
136- llseek: page_map_seek,
137- read: page_map_read,
138- mmap: page_map_mmap
139+ .llseek = page_map_seek,
140+ .read = page_map_read,
141+ .mmap = page_map_mmap
142 };
143
144
145diff -aur linux.backup/arch/ppc64/kernel/scanlog.c linux/arch/ppc64/kernel/scanlog.c
146--- linux.backup/arch/ppc64/kernel/scanlog.c Tue Mar 25 10:52:19 2003
147+++ linux/arch/ppc64/kernel/scanlog.c Sat Aug 16 15:44:59 2003
148@@ -190,11 +190,11 @@
149 }
150
151 struct file_operations scanlog_fops = {
152- owner: THIS_MODULE,
153- read: scanlog_read,
154- write: scanlog_write,
155- open: scanlog_open,
156- release: scanlog_release,
157+ .owner = THIS_MODULE,
158+ .read = scanlog_read,
159+ .write = scanlog_write,
160+ .open = scanlog_open,
161+ .release = scanlog_release,
162 };
163
164 int __init scanlog_init(void)
This page took 0.072742 seconds and 4 git commands to generate.