Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5cb4410 authored by Aditya Mathur's avatar Aditya Mathur
Browse files

usb: gadget: ffs: remove debug prints



Removed debug prints.

Change-Id: Ie28b9a8b2b81d050c19eb65aa04ade9102e5fa51
Signed-off-by: default avatarAditya Mathur <aditmath@codeaurora.org>
parent c8407796
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -289,7 +289,6 @@ static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,

		/* Handle data */
		if (ffs->state == FFS_READ_DESCRIPTORS) {
			pr_info("read descriptors\n");
			ret = __ffs_data_got_descs(ffs, data, len);
			if (unlikely(ret < 0))
				break;
@@ -297,7 +296,6 @@ static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,
			ffs->state = FFS_READ_STRINGS;
			ret = len;
		} else {
			pr_info("read strings\n");
			ret = __ffs_data_got_strings(ffs, data, len);
			if (unlikely(ret < 0))
				break;