diff options
Diffstat (limited to 'drivers/video/mbx/mbxdebugfs.c')
-rw-r--r-- | drivers/video/mbx/mbxdebugfs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/video/mbx/mbxdebugfs.c b/drivers/video/mbx/mbxdebugfs.c index ecad96524570..12dec7634c55 100644 --- a/drivers/video/mbx/mbxdebugfs.c +++ b/drivers/video/mbx/mbxdebugfs.c | |||
@@ -175,36 +175,42 @@ static const struct file_operations sysconf_fops = { | |||
175 | .read = sysconf_read_file, | 175 | .read = sysconf_read_file, |
176 | .write = write_file_dummy, | 176 | .write = write_file_dummy, |
177 | .open = open_file_generic, | 177 | .open = open_file_generic, |
178 | .llseek = default_llseek, | ||
178 | }; | 179 | }; |
179 | 180 | ||
180 | static const struct file_operations clock_fops = { | 181 | static const struct file_operations clock_fops = { |
181 | .read = clock_read_file, | 182 | .read = clock_read_file, |
182 | .write = write_file_dummy, | 183 | .write = write_file_dummy, |
183 | .open = open_file_generic, | 184 | .open = open_file_generic, |
185 | .llseek = default_llseek, | ||
184 | }; | 186 | }; |
185 | 187 | ||
186 | static const struct file_operations display_fops = { | 188 | static const struct file_operations display_fops = { |
187 | .read = display_read_file, | 189 | .read = display_read_file, |
188 | .write = write_file_dummy, | 190 | .write = write_file_dummy, |
189 | .open = open_file_generic, | 191 | .open = open_file_generic, |
192 | .llseek = default_llseek, | ||
190 | }; | 193 | }; |
191 | 194 | ||
192 | static const struct file_operations gsctl_fops = { | 195 | static const struct file_operations gsctl_fops = { |
193 | .read = gsctl_read_file, | 196 | .read = gsctl_read_file, |
194 | .write = write_file_dummy, | 197 | .write = write_file_dummy, |
195 | .open = open_file_generic, | 198 | .open = open_file_generic, |
199 | .llseek = default_llseek, | ||
196 | }; | 200 | }; |
197 | 201 | ||
198 | static const struct file_operations sdram_fops = { | 202 | static const struct file_operations sdram_fops = { |
199 | .read = sdram_read_file, | 203 | .read = sdram_read_file, |
200 | .write = write_file_dummy, | 204 | .write = write_file_dummy, |
201 | .open = open_file_generic, | 205 | .open = open_file_generic, |
206 | .llseek = default_llseek, | ||
202 | }; | 207 | }; |
203 | 208 | ||
204 | static const struct file_operations misc_fops = { | 209 | static const struct file_operations misc_fops = { |
205 | .read = misc_read_file, | 210 | .read = misc_read_file, |
206 | .write = write_file_dummy, | 211 | .write = write_file_dummy, |
207 | .open = open_file_generic, | 212 | .open = open_file_generic, |
213 | .llseek = default_llseek, | ||
208 | }; | 214 | }; |
209 | 215 | ||
210 | static void __devinit mbxfb_debugfs_init(struct fb_info *fbi) | 216 | static void __devinit mbxfb_debugfs_init(struct fb_info *fbi) |