Remove incorrect "asus_"-prefix from parameter name. Error detected with section2text.rb, see autoparam patch.
Signed-off-by: Magnus Damm <[EMAIL PROTECTED]> --- linux-2.6.12-rc1/drivers/acpi/asus_acpi.c 2005-03-20 18:09:14.000000000 +0100 +++ linux-2.6.12-rc1-autoparam/drivers/acpi/asus_acpi.c 2005-03-21 14:26:23.000000000 +0100 @@ -78,9 +78,9 @@ static uid_t asus_uid; static gid_t asus_gid; -module_param(asus_uid, uint, 0); +module_param_named(uid, asus_uid, uint, 0); MODULE_PARM_DESC(uid, "UID for entries in /proc/acpi/asus.\n"); -module_param(asus_gid, uint, 0); +module_param_named(gid, asus_gid, uint, 0); MODULE_PARM_DESC(gid, "GID for entries in /proc/acpi/asus.\n"); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/