Commit 4d3fbff2 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki Committed by Len Brown

ACPI: Remove the unused EC sysdev class

The ACPI EC driver defines a sysdev class, but it doesn't use it, so
it can be removed.
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 99759619
...@@ -24,10 +24,6 @@ MODULE_PARM_DESC(write_support, "Dangerous, reboot and removal of battery may " ...@@ -24,10 +24,6 @@ MODULE_PARM_DESC(write_support, "Dangerous, reboot and removal of battery may "
#define EC_SPACE_SIZE 256 #define EC_SPACE_SIZE 256
struct sysdev_class acpi_ec_sysdev_class = {
.name = "ec",
};
static struct dentry *acpi_ec_debugfs_dir; static struct dentry *acpi_ec_debugfs_dir;
static int acpi_ec_open_io(struct inode *i, struct file *f) static int acpi_ec_open_io(struct inode *i, struct file *f)
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
#ifndef _ACPI_INTERNAL_H_ #ifndef _ACPI_INTERNAL_H_
#define _ACPI_INTERNAL_H_ #define _ACPI_INTERNAL_H_
#include <linux/sysdev.h>
#define PREFIX "ACPI: " #define PREFIX "ACPI: "
int init_acpi_device_notify(void); int init_acpi_device_notify(void);
...@@ -64,7 +62,6 @@ struct acpi_ec { ...@@ -64,7 +62,6 @@ struct acpi_ec {
struct list_head list; struct list_head list;
struct transaction *curr; struct transaction *curr;
spinlock_t curr_lock; spinlock_t curr_lock;
struct sys_device sysdev;
}; };
extern struct acpi_ec *first_ec; extern struct acpi_ec *first_ec;
......
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