diff options
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 7222a18a0319..e3f04b272f3f 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
@@ -669,16 +669,11 @@ static int acpi_ec_add_fs(struct acpi_device *device) | |||
669 | return -ENODEV; | 669 | return -ENODEV; |
670 | } | 670 | } |
671 | 671 | ||
672 | entry = create_proc_entry(ACPI_EC_FILE_INFO, S_IRUGO, | 672 | entry = proc_create_data(ACPI_EC_FILE_INFO, S_IRUGO, |
673 | acpi_device_dir(device)); | 673 | acpi_device_dir(device), |
674 | &acpi_ec_info_ops, acpi_driver_data(device)); | ||
674 | if (!entry) | 675 | if (!entry) |
675 | return -ENODEV; | 676 | return -ENODEV; |
676 | else { | ||
677 | entry->proc_fops = &acpi_ec_info_ops; | ||
678 | entry->data = acpi_driver_data(device); | ||
679 | entry->owner = THIS_MODULE; | ||
680 | } | ||
681 | |||
682 | return 0; | 677 | return 0; |
683 | } | 678 | } |
684 | 679 | ||