Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753535AbbFIEps (ORCPT ); Tue, 9 Jun 2015 00:45:48 -0400 Received: from mail-pa0-f66.google.com ([209.85.220.66]:35228 "EHLO mail-pa0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750970AbbFIEpj (ORCPT ); Tue, 9 Jun 2015 00:45:39 -0400 From: Nizam Haider To: gregkh@linuxfoundation.org Cc: joe@perches.com, fabio.falzoi84@gmail.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Nizam Haider Subject: [PATCH] Staging: rts5208: xd: Fixed checkpatch warning Date: Tue, 9 Jun 2015 10:14:55 +0530 Message-Id: <1433825095-3194-1-git-send-email-nizamhaider786@gmail.com> X-Mailer: git-send-email 1.7.7 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1023 Lines: 30 Fixed a warning, else is not generally useful after a break or return. Signed-off-by: Nizam Haider --- drivers/staging/rts5208/xd.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rts5208/xd.c b/drivers/staging/rts5208/xd.c index 8fd108e..10fea7b 100644 --- a/drivers/staging/rts5208/xd.c +++ b/drivers/staging/rts5208/xd.c @@ -1379,9 +1379,8 @@ static int xd_erase_block(struct rtsx_chip *chip, u32 phy_blk) xd_set_err_code(chip, XD_PRG_ERROR); rtsx_trace(chip); return STATUS_FAIL; - } else { - xd_set_err_code(chip, XD_ERASE_FAIL); } + xd_set_err_code(chip, XD_ERASE_FAIL); retval = xd_reset_cmd(chip); if (retval != STATUS_SUCCESS) { rtsx_trace(chip); -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/