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

Commit 392361f1 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa: Return error -ENODEV for set data quota failure"

parents e94c88f3 80edec23
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ static long ipa3_wan_ioctl(struct file *filp,
			(struct wan_ioctl_set_data_quota *)param);
		if (rc != 0) {
			IPAWANERR("WAN_IOC_SET_DATA_QUOTA failed\n");
			if (retval == -ENODEV)
			if (rc == -ENODEV)
				retval = -ENODEV;
			else
				retval = -EFAULT;