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

Commit 8a1d41cf authored by Rusty Russell's avatar Rusty Russell
Browse files

staging/zcache: don't use PTR_RET().



We've already tested that it's an error.

Cc: Dan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 60d676c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1908,7 +1908,7 @@ static int zcache_init(void)
#endif
		if (IS_ERR(old_ops) || old_ops) {
			if (IS_ERR(old_ops))
				return PTR_RET(old_ops);
				return PTR_ERR(old_ops);
			pr_warn("%s: frontswap_ops overridden\n", namestr);
		}
	}