Commit b5cff595 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] em28xx: prefer_bulk parameter is read-only

As the bulk mode is set at device's probe, it is not possible
to change it later. So, change the parameter to be read only
after modprobing.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent a6bad040
...@@ -62,7 +62,7 @@ module_param_array(card, int, NULL, 0444); ...@@ -62,7 +62,7 @@ module_param_array(card, int, NULL, 0444);
MODULE_PARM_DESC(card, "card type"); MODULE_PARM_DESC(card, "card type");
static unsigned int prefer_bulk; static unsigned int prefer_bulk;
module_param(prefer_bulk, int, 0644); module_param(prefer_bulk, int, 0444);
MODULE_PARM_DESC(prefer_bulk, "prefer USB bulk transfers"); MODULE_PARM_DESC(prefer_bulk, "prefer USB bulk transfers");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment