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

Signed-off-by: Tomas Winkler <[email protected]>
---
 drivers/misc/mei/amthif.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/misc/mei/amthif.c b/drivers/misc/mei/amthif.c
index 2052609..b8deb34 100644
--- a/drivers/misc/mei/amthif.c
+++ b/drivers/misc/mei/amthif.c
@@ -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;
-- 
1.8.5.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to