ACPI: Remove the unused EC sysdev class
authorRafael J. Wysocki <rjw@sisk.pl>
Thu, 10 Mar 2011 20:21:23 +0000 (21:21 +0100)
committerLen Brown <len.brown@intel.com>
Fri, 18 Mar 2011 22:22:20 +0000 (18:22 -0400)
The ACPI EC driver defines a sysdev class, but it doesn't use it, so
it can be removed.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Len Brown <len.brown@intel.com>
drivers/acpi/ec_sys.c
drivers/acpi/internal.h

index 411620ef84c2e83811adc73c8cd255f58a99549b..05b44201a61476988475fce1fea5d6b817e0565d 100644 (file)
@@ -24,10 +24,6 @@ MODULE_PARM_DESC(write_support, "Dangerous, reboot and removal of battery may "
 
 #define EC_SPACE_SIZE 256
 
-struct sysdev_class acpi_ec_sysdev_class = {
-       .name = "ec",
-};
-
 static struct dentry *acpi_ec_debugfs_dir;
 
 static int acpi_ec_open_io(struct inode *i, struct file *f)
index b1cc81a0431b600653011a284228424b50ac5e83..4bfb759deb104e6febcf837a84d52c3cb39916a3 100644 (file)
@@ -21,8 +21,6 @@
 #ifndef _ACPI_INTERNAL_H_
 #define _ACPI_INTERNAL_H_
 
-#include <linux/sysdev.h>
-
 #define PREFIX "ACPI: "
 
 int init_acpi_device_notify(void);
@@ -64,7 +62,6 @@ struct acpi_ec {
        struct list_head list;
        struct transaction *curr;
        spinlock_t curr_lock;
-       struct sys_device sysdev;
 };
 
 extern struct acpi_ec *first_ec;