summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrzej Pietrasiewicz <andrzej.p@samsung.com>2013-10-15 08:33:12 +0200
committerFelipe Balbi <balbi@ti.com>2013-10-15 06:52:04 -0500
commit81a1d5ea6670acecf1366cd6a4d328c123bdf9fa (patch)
tree81e98edaa5d49160c19a68db41dd28a4159c7c6e
parent7f4d1e7bdd9f293a522e5559f1b64a95c066c15e (diff)
usb: gadget: storage_common: use strtobool instead of kstrtouint
strtobool is more flexible for the user and is more appropriate in the context. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Acked-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r--drivers/usb/gadget/storage_common.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/usb/gadget/storage_common.c b/drivers/usb/gadget/storage_common.c
index c7b78a1f6086..8bd5f2d838db 100644
--- a/drivers/usb/gadget/storage_common.c
+++ b/drivers/usb/gadget/storage_common.c
@@ -375,9 +375,9 @@ ssize_t fsg_store_ro(struct fsg_lun *curlun, struct rw_semaphore *filesem,
const char *buf, size_t count)
{
ssize_t rc;
- unsigned ro;
+ bool ro;
- rc = kstrtouint(buf, 2, &ro);
+ rc = strtobool(buf, &ro);
if (rc)
return rc;
@@ -402,10 +402,10 @@ EXPORT_SYMBOL(fsg_store_ro);
ssize_t fsg_store_nofua(struct fsg_lun *curlun, const char *buf, size_t count)
{
- unsigned nofua;
+ bool nofua;
int ret;
- ret = kstrtouint(buf, 2, &nofua);
+ ret = strtobool(buf, &nofua);
if (ret)
return ret;
@@ -452,10 +452,10 @@ EXPORT_SYMBOL(fsg_store_file);
ssize_t fsg_store_cdrom(struct fsg_lun *curlun, const char *buf, size_t count)
{
- unsigned cdrom;
+ bool cdrom;
int ret;
- ret = kstrtouint(buf, 2, &cdrom);
+ ret = strtobool(buf, &cdrom);
if (ret)
return ret;
@@ -468,10 +468,10 @@ EXPORT_SYMBOL(fsg_store_cdrom);
ssize_t fsg_store_removable(struct fsg_lun *curlun, const char *buf,
size_t count)
{
- unsigned removable;
+ bool removable;
int ret;
- ret = kstrtouint(buf, 2, &removable);
+ ret = strtobool(buf, &removable);
if (ret)
return ret;