Commit e7de38c1 authored by Len Brown's avatar Len Brown Committed by Len Brown

[ACPI] migrate to seq_file() interface

http://bugzilla.kernel.org/show_bug.cgi?id=3333Signed-off-by: default avatarDavid Shaohua Li <shaohua.li@intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 474821ca
This diff is collapsed.
......@@ -30,6 +30,7 @@
#include <linux/types.h>
#include <linux/delay.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <asm/io.h>
#include <acpi/acpi_bus.h>
#include <acpi/acpi_drivers.h>
......@@ -491,41 +492,38 @@ struct proc_dir_entry *acpi_ec_dir;
static int
acpi_ec_read_info (
char *page,
char **start,
off_t off,
int count,
int *eof,
void *data)
acpi_ec_read_info (struct seq_file *seq, void *offset)
{
struct acpi_ec *ec = (struct acpi_ec *) data;
char *p = page;
int len = 0;
struct acpi_ec *ec = (struct acpi_ec *) seq->private;
ACPI_FUNCTION_TRACE("acpi_ec_read_info");
if (!ec || (off != 0))
if (!ec)
goto end;
p += sprintf(p, "gpe bit: 0x%02x\n",
seq_printf(seq, "gpe bit: 0x%02x\n",
(u32) ec->gpe_bit);
p += sprintf(p, "ports: 0x%02x, 0x%02x\n",
seq_printf(seq, "ports: 0x%02x, 0x%02x\n",
(u32) ec->status_addr.address, (u32) ec->data_addr.address);
p += sprintf(p, "use global lock: %s\n",
seq_printf(seq, "use global lock: %s\n",
ec->global_lock?"yes":"no");
end:
len = (p - page);
if (len <= off+count) *eof = 1;
*start = page + off;
len -= off;
if (len>count) len = count;
if (len<0) len = 0;
return_VALUE(len);
return_VALUE(0);
}
static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
{
return single_open(file, acpi_ec_read_info, PDE(inode)->data);
}
static struct file_operations acpi_ec_info_ops = {
.open = acpi_ec_info_open_fs,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
.owner = THIS_MODULE,
};
static int
acpi_ec_add_fs (
......@@ -542,13 +540,17 @@ acpi_ec_add_fs (
return_VALUE(-ENODEV);
}
entry = create_proc_read_entry(ACPI_EC_FILE_INFO, S_IRUGO,
acpi_device_dir(device), acpi_ec_read_info,
acpi_driver_data(device));
entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
acpi_device_dir(device));
if (!entry)
ACPI_DEBUG_PRINT((ACPI_DB_WARN,
"Unable to create '%s' fs entry\n",
ACPI_EC_FILE_INFO));
else {
entry->proc_fops = &acpi_ec_info_ops;
entry->data = acpi_driver_data(device);
entry->owner = THIS_MODULE;
}
return_VALUE(0);
}
......
......@@ -28,6 +28,7 @@
#include <linux/init.h>
#include <linux/types.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <asm/uaccess.h>
#include <acpi/acpi_bus.h>
......@@ -75,51 +76,41 @@ struct proc_dir_entry *acpi_fan_dir;
static int
acpi_fan_read_state (
char *page,
char **start,
off_t off,
int count,
int *eof,
void *data)
acpi_fan_read_state (struct seq_file *seq, void *offset)
{
struct acpi_fan *fan = (struct acpi_fan *) data;
char *p = page;
int len = 0;
struct acpi_fan *fan = (struct acpi_fan *) seq->private;
int state = 0;
ACPI_FUNCTION_TRACE("acpi_fan_read_state");
if (!fan || (off != 0))
if (!fan)
goto end;
if (acpi_bus_get_power(fan->handle, &state))
goto end;
p += sprintf(p, "status: %s\n",
seq_printf(seq, "status: %s\n",
!state?"on":"off");
end:
len = (p - page);
if (len <= off+count) *eof = 1;
*start = page + off;
len -= off;
if (len>count) len = count;
if (len<0) len = 0;
return_VALUE(len);
return_VALUE(0);
}
static int acpi_fan_state_open_fs(struct inode *inode, struct file *file)
{
return single_open(file, acpi_fan_read_state, PDE(inode)->data);
}
static int
static ssize_t
acpi_fan_write_state (
struct file *file,
const char __user *buffer,
unsigned long count,
void *data)
size_t count,
loff_t *ppos)
{
int result = 0;
struct acpi_fan *fan = (struct acpi_fan *) data;
struct seq_file *m = (struct seq_file *)file->private_data;
struct acpi_fan *fan = (struct acpi_fan *) m->private;
char state_string[12] = {'\0'};
ACPI_FUNCTION_TRACE("acpi_fan_write_state");
......@@ -140,6 +131,14 @@ acpi_fan_write_state (
return_VALUE(count);
}
static struct file_operations acpi_fan_state_ops = {
.open = acpi_fan_state_open_fs,
.read = seq_read,
.write = acpi_fan_write_state,
.llseek = seq_lseek,
.release = single_release,
.owner = THIS_MODULE,
};
static int
acpi_fan_add_fs (
......@@ -168,8 +167,7 @@ acpi_fan_add_fs (
"Unable to create '%s' fs entry\n",
ACPI_FAN_FILE_STATE));
else {
entry->read_proc = acpi_fan_read_state;
entry->write_proc = acpi_fan_write_state;
entry->proc_fops = &acpi_fan_state_ops;
entry->data = acpi_driver_data(device);
entry->owner = THIS_MODULE;
}
......
......@@ -24,6 +24,7 @@
*/
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/init.h>
#include <asm/uaccess.h>
......@@ -48,35 +49,26 @@ extern FADT_DESCRIPTOR acpi_fadt;
-------------------------------------------------------------------------- */
static int
acpi_system_read_info (
char *page,
char **start,
off_t off,
int count,
int *eof,
void *data)
acpi_system_read_info (struct seq_file *seq, void *offset)
{
char *p = page;
int size = 0;
ACPI_FUNCTION_TRACE("acpi_system_read_info");
if (off != 0)
goto end;
p += sprintf(p, "version: %x\n", ACPI_CA_VERSION);
end:
size = (p - page);
if (size <= off+count) *eof = 1;
*start = page + off;
size -= off;
if (size>count) size = count;
if (size<0) size = 0;
seq_printf(seq, "version: %x\n", ACPI_CA_VERSION);
return_VALUE(0);
}
return_VALUE(size);
static int acpi_system_info_open_fs(struct inode *inode, struct file *file)
{
return single_open(file, acpi_system_read_info, PDE(inode)->data);
}
static struct file_operations acpi_system_info_ops = {
.open = acpi_system_info_open_fs,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static ssize_t acpi_system_read_dsdt (struct file*, char __user *, size_t, loff_t*);
static struct file_operations acpi_system_dsdt_ops = {
......@@ -152,10 +144,13 @@ static int __init acpi_system_init (void)
/* 'info' [R] */
name = ACPI_SYSTEM_FILE_INFO;
entry = create_proc_read_entry(name,
S_IRUGO, acpi_root_dir, acpi_system_read_info,NULL);
entry = create_proc_entry(name,
S_IRUGO, acpi_root_dir);
if (!entry)
goto Error;
else {
entry->proc_fops = &acpi_system_info_ops;
}
/* 'dsdt' [R] */
name = ACPI_SYSTEM_FILE_DSDT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment