diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/acpi/ec_sys.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/acpi/ec_sys.c')
-rw-r--r-- | drivers/acpi/ec_sys.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/acpi/ec_sys.c b/drivers/acpi/ec_sys.c index 0e869b3f81ca..05b44201a614 100644 --- a/drivers/acpi/ec_sys.c +++ b/drivers/acpi/ec_sys.c | |||
@@ -24,10 +24,6 @@ MODULE_PARM_DESC(write_support, "Dangerous, reboot and removal of battery may " | |||
24 | 24 | ||
25 | #define EC_SPACE_SIZE 256 | 25 | #define EC_SPACE_SIZE 256 |
26 | 26 | ||
27 | struct sysdev_class acpi_ec_sysdev_class = { | ||
28 | .name = "ec", | ||
29 | }; | ||
30 | |||
31 | static struct dentry *acpi_ec_debugfs_dir; | 27 | static struct dentry *acpi_ec_debugfs_dir; |
32 | 28 | ||
33 | static int acpi_ec_open_io(struct inode *i, struct file *f) | 29 | static int acpi_ec_open_io(struct inode *i, struct file *f) |
@@ -101,6 +97,7 @@ static struct file_operations acpi_ec_io_ops = { | |||
101 | .open = acpi_ec_open_io, | 97 | .open = acpi_ec_open_io, |
102 | .read = acpi_ec_read_io, | 98 | .read = acpi_ec_read_io, |
103 | .write = acpi_ec_write_io, | 99 | .write = acpi_ec_write_io, |
100 | .llseek = default_llseek, | ||
104 | }; | 101 | }; |
105 | 102 | ||
106 | int acpi_ec_add_debugfs(struct acpi_ec *ec, unsigned int ec_device_count) | 103 | int acpi_ec_add_debugfs(struct acpi_ec *ec, unsigned int ec_device_count) |