This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / acpi / ec.c
index f1d4291..1ee79a8 100644 (file)
@@ -1,7 +1,6 @@
 /*
  *  acpi_ec.c - ACPI Embedded Controller Driver ($Revision: 38 $)
  *
- *  Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
  *
@@ -30,7 +29,6 @@
 #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>
@@ -264,7 +262,6 @@ ec_read(u8 addr, u8 *val)
        else
                return err;
 }
-EXPORT_SYMBOL(ec_read);
 
 int
 ec_write(u8 addr, u8 val)
@@ -281,7 +278,6 @@ ec_write(u8 addr, u8 val)
 
        return err;
 }
-EXPORT_SYMBOL(ec_write);
 
 
 static int
@@ -445,15 +441,9 @@ acpi_ec_space_handler (
 
        ACPI_FUNCTION_TRACE("acpi_ec_space_handler");
 
-       if ((address > 0xFF) || !value || !handler_context)
+       if ((address > 0xFF) || (bit_width != 8) || !value || !handler_context)
                return_VALUE(AE_BAD_PARAMETER);
 
-       if(bit_width != 8) {
-               printk(KERN_WARNING PREFIX "acpi_ec_space_handler: bit_width should be 8\n");
-               if (acpi_strict)
-                       return_VALUE(AE_BAD_PARAMETER);
-       }
-
        ec = (struct acpi_ec *) handler_context;
 
        switch (function) {
@@ -494,38 +484,41 @@ struct proc_dir_entry             *acpi_ec_dir;
 
 
 static int
-acpi_ec_read_info (struct seq_file *seq, void *offset)
+acpi_ec_read_info (
+       char                    *page,
+       char                    **start,
+       off_t                   off,
+       int                     count,
+       int                     *eof,
+       void                    *data)
 {
-       struct acpi_ec          *ec = (struct acpi_ec *) seq->private;
+       struct acpi_ec          *ec = (struct acpi_ec *) data;
+       char                    *p = page;
+       int                     len = 0;
 
        ACPI_FUNCTION_TRACE("acpi_ec_read_info");
 
-       if (!ec)
+       if (!ec || (off != 0))
                goto end;
 
-       seq_printf(seq, "gpe bit:                 0x%02x\n",
+       p += sprintf(p, "gpe bit:                 0x%02x\n",
                (u32) ec->gpe_bit);
-       seq_printf(seq, "ports:                   0x%02x, 0x%02x\n",
+       p += sprintf(p, "ports:                   0x%02x, 0x%02x\n",
                (u32) ec->status_addr.address, (u32) ec->data_addr.address);
-       seq_printf(seq, "use global lock:         %s\n",
+       p += sprintf(p, "use global lock:         %s\n",
                ec->global_lock?"yes":"no");
 
 end:
-       return_VALUE(0);
+       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);
 }
 
-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,17 +535,13 @@ acpi_ec_add_fs (
                        return_VALUE(-ENODEV);
        }
 
-       entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO,
-               acpi_device_dir(device));
+       entry = create_proc_read_entry(ACPI_EC_FILE_INFO, S_IRUGO,
+               acpi_device_dir(device), acpi_ec_read_info,
+               acpi_driver_data(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);
 }