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

Commit 34e267d0 authored by Tomas Winkler's avatar Tomas Winkler Committed by Greg Kroah-Hartman
Browse files

mei: amthif: fix checkpatch error



ERROR: else should follow close brace '}'
+	}
+	else {

Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1adc1674
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -247,8 +247,7 @@ int mei_amthif_read(struct mei_device *dev, struct file *file,
	if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length)) {
		dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
		rets = -EFAULT;
	}
	else {
	} else {
		rets = length;
		if ((*offset + length) < cb->buf_idx) {
			*offset += length;