wctc4xxp: Make the "mode" module parameter read-only in sysfs.
The mode module parameter is only acted on during module initialization. We shouldn't allow anyone to change it after the driver is already loaded. Signed-off-by: Shaun Ruffell <sruffell@digium.com> Acked-by: Kinsey Moore <kmoore@digium.com> Acked-By: Russ Meyerriecks <rmeyerriecks@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9537 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
parent
0c3cbc2c32
commit
9292e6f0ad
@ -3766,7 +3766,7 @@ static void __exit wctc4xxp_cleanup(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
module_param(debug, int, S_IRUGO | S_IWUSR);
|
module_param(debug, int, S_IRUGO | S_IWUSR);
|
||||||
module_param(mode, charp, S_IRUGO | S_IWUSR);
|
module_param(mode, charp, S_IRUGO);
|
||||||
MODULE_PARM_DESC(mode, "'g729', 'g723.1', or 'any'. Default 'any'.");
|
MODULE_PARM_DESC(mode, "'g729', 'g723.1', or 'any'. Default 'any'.");
|
||||||
MODULE_DESCRIPTION("Wildcard TC400P+TC400M Driver");
|
MODULE_DESCRIPTION("Wildcard TC400P+TC400M Driver");
|
||||||
MODULE_AUTHOR("Digium Incorporated <support@digium.com>");
|
MODULE_AUTHOR("Digium Incorporated <support@digium.com>");
|
||||||
|
Loading…
Reference in New Issue
Block a user