Commit fa84c575 authored by Michal Nazarewicz's avatar Michal Nazarewicz Committed by Felipe Balbi

usb: gadget: f_mass_storage: change default value of the removable parameter

This commit changes the default value of the removable module parameter
from “y” to “n”.  This comes with line with file_storag's default and
seems to be a better default.
Signed-off-by: default avatarMichal Nazarewicz <mina86@mina86.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 338edabc
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
* backing storage. * backing storage.
* ro=b[,b...] Default false, boolean for read-only access. * ro=b[,b...] Default false, boolean for read-only access.
* removable=b[,b...] * removable=b[,b...]
* Default true, boolean for removable media. * Default false, boolean for removable media.
* cdrom=b[,b...] Default false, boolean for whether to emulate * cdrom=b[,b...] Default false, boolean for whether to emulate
* a CD-ROM drive. * a CD-ROM drive.
* nofua=b[,b...] Default false, booleans for ignore FUA flag * nofua=b[,b...] Default false, booleans for ignore FUA flag
...@@ -3167,8 +3167,7 @@ fsg_config_from_params(struct fsg_config *cfg, ...@@ -3167,8 +3167,7 @@ fsg_config_from_params(struct fsg_config *cfg,
for (i = 0, lun = cfg->luns; i < cfg->nluns; ++i, ++lun) { for (i = 0, lun = cfg->luns; i < cfg->nluns; ++i, ++lun) {
lun->ro = !!params->ro[i]; lun->ro = !!params->ro[i];
lun->cdrom = !!params->cdrom[i]; lun->cdrom = !!params->cdrom[i];
lun->removable = /* Removable by default */ lun->removable = !!params->removable[i];
params->removable_count <= i || params->removable[i];
lun->filename = lun->filename =
params->file_count > i && params->file[i][0] params->file_count > i && params->file[i][0]
? params->file[i] ? params->file[i]
...@@ -3203,4 +3202,3 @@ fsg_common_from_params(struct fsg_common *common, ...@@ -3203,4 +3202,3 @@ fsg_common_from_params(struct fsg_common *common,
fsg_config_from_params(&cfg, params); fsg_config_from_params(&cfg, params);
return fsg_common_init(common, cdev, &cfg); return fsg_common_init(common, cdev, &cfg);
} }
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