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

Commit 0729a049 authored by Hezi Shahmoon's avatar Hezi Shahmoon Committed by Wolfram Sang
Browse files

i2c: mv64xxx: really allow I2C offloading



Commit 00d8689b ("i2c: mv64xxx: rework offload support to fix
several problems") completely reworked the offload support, but left a
debugging-related "return false" at the beginning of the
mv64xxx_i2c_can_offload() function. This has the unfortunate consequence
that offloading is in fact never used, which wasn't really the
intention.

This commit fixes that problem by removing the bogus "return false".

Fixes: 00d8689b ("i2c: mv64xxx: rework offload support to fix several problems")
Signed-off-by: default avatarHezi Shahmoon <hezi@marvell.com>
[Thomas: reworked commit log and title.]
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
Cc: <stable@vger.kernel.org>
parent 7379047d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -669,8 +669,6 @@ mv64xxx_i2c_can_offload(struct mv64xxx_i2c_data *drv_data)
	struct i2c_msg *msgs = drv_data->msgs;
	int num = drv_data->num_msgs;

	return false;

	if (!drv_data->offload_enabled)
		return false;