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

Commit 58ee30d0 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "USB: ccid_bridge: Fix compilation error for 64 bit kernel"

parents 4e9a786b c31b6d19
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -272,7 +272,7 @@ static ssize_t ccid_bridge_write(struct file *fp, const char __user *ubuf,
	char *kbuf;
	ktime_t start_t, delta_t;

	pr_debug("called with %d", count);
	pr_debug("called with %zu", count);

	if (!ccid->intf) {
		pr_debug("intf is not active");
@@ -360,7 +360,7 @@ static ssize_t ccid_bridge_read(struct file *fp, char __user *ubuf,
	char *kbuf;
	ktime_t start_t, delta_t;

	pr_debug("called with %d", count);
	pr_debug("called with %zu", count);
	if (!ccid->intf) {
		pr_debug("intf is not active");
		return -ENODEV;