From: Mauro Carvalho Chehab Date: Sun, 23 Dec 2012 15:14:20 +0000 (-0200) Subject: [media] em28xx: prefer_bulk parameter is read-only X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b5cff595bd005dba8051e9125f0ed28b5ff05c89;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git [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: Mauro Carvalho Chehab --- diff --git a/drivers/media/usb/em28xx/em28xx-cards.c b/drivers/media/usb/em28xx/em28xx-cards.c index bc63b1cee808..2129560a7823 100644 --- a/drivers/media/usb/em28xx/em28xx-cards.c +++ b/drivers/media/usb/em28xx/em28xx-cards.c @@ -62,7 +62,7 @@ module_param_array(card, int, NULL, 0444); MODULE_PARM_DESC(card, "card type"); 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");