diff options
Diffstat (limited to 'drivers/acpi/processor_throttling.c')
-rw-r--r-- | drivers/acpi/processor_throttling.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 74a52d4e79ae..b966549ec000 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c | |||
@@ -306,9 +306,9 @@ static int acpi_processor_throttling_open_fs(struct inode *inode, | |||
306 | PDE(inode)->data); | 306 | PDE(inode)->data); |
307 | } | 307 | } |
308 | 308 | ||
309 | ssize_t acpi_processor_write_throttling(struct file * file, | 309 | static ssize_t acpi_processor_write_throttling(struct file * file, |
310 | const char __user * buffer, | 310 | const char __user * buffer, |
311 | size_t count, loff_t * data) | 311 | size_t count, loff_t * data) |
312 | { | 312 | { |
313 | int result = 0; | 313 | int result = 0; |
314 | struct seq_file *m = (struct seq_file *)file->private_data; | 314 | struct seq_file *m = (struct seq_file *)file->private_data; |
@@ -337,6 +337,7 @@ ssize_t acpi_processor_write_throttling(struct file * file, | |||
337 | struct file_operations acpi_processor_throttling_fops = { | 337 | struct file_operations acpi_processor_throttling_fops = { |
338 | .open = acpi_processor_throttling_open_fs, | 338 | .open = acpi_processor_throttling_open_fs, |
339 | .read = seq_read, | 339 | .read = seq_read, |
340 | .write = acpi_processor_write_throttling, | ||
340 | .llseek = seq_lseek, | 341 | .llseek = seq_lseek, |
341 | .release = single_release, | 342 | .release = single_release, |
342 | }; | 343 | }; |