[ACPI_ASUS] fix asus module param description

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by Karol Kozimor and committed by Len Brown aea19aa0 bb84db93

+4 -2
+4 -2
drivers/acpi/asus_acpi.c
··· 78 78 static uid_t asus_uid; 79 79 static gid_t asus_gid; 80 80 module_param(asus_uid, uint, 0); 81 - MODULE_PARM_DESC(uid, "UID for entries in /proc/acpi/asus.\n"); 81 + MODULE_PARM_DESC(asus_uid, "UID for entries in /proc/acpi/asus.\n"); 82 82 module_param(asus_gid, uint, 0); 83 - MODULE_PARM_DESC(gid, "GID for entries in /proc/acpi/asus.\n"); 83 + MODULE_PARM_DESC(asus_gid, "GID for entries in /proc/acpi/asus.\n"); 84 84 85 85 /* For each model, all features implemented, 86 86 * those marked with R are relative to HOTK, A for absolute */ ··· 851 851 mode = S_IFREG | S_IRUGO | S_IWUGO; 852 852 } else { 853 853 mode = S_IFREG | S_IRUSR | S_IRGRP | S_IWUSR | S_IWGRP; 854 + printk(KERN_WARNING " asus_uid and asus_gid parameters are " 855 + "deprecated, use chown and chmod instead!\n"); 854 856 } 855 857 856 858 acpi_device_dir(device) = asus_proc_dir;