Commit 3d722dd4 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Dmitry Torokhov
Browse files

Input: atmel_mxt_ts - simplify the return expression of mxt_send_bootloader_cmd()

parent c8834032
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -608,7 +608,6 @@ static int mxt_check_bootloader(struct mxt_data *data, unsigned int state,

static int mxt_send_bootloader_cmd(struct mxt_data *data, bool unlock)
{
	int ret;
	u8 buf[2];

	if (unlock) {
@@ -619,11 +618,7 @@ static int mxt_send_bootloader_cmd(struct mxt_data *data, bool unlock)
		buf[1] = 0x01;
	}

	ret = mxt_bootloader_write(data, buf, 2);
	if (ret)
		return ret;

	return 0;
	return mxt_bootloader_write(data, buf, sizeof(buf));
}

static int __mxt_read_reg(struct i2c_client *client,