Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754978AbbG1HRK (ORCPT ); Tue, 28 Jul 2015 03:17:10 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:36544 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751159AbbG1HRI (ORCPT ); Tue, 28 Jul 2015 03:17:08 -0400 From: Shraddha Barke To: Karsten Keil , Julia Lawall , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Shraddha Barke Subject: [PATCH] Drivers: isdn: Drop unnecessary continue Date: Tue, 28 Jul 2015 12:46:06 +0530 Message-Id: <1438067766-6438-1-git-send-email-shraddha.6596@gmail.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 954 Lines: 37 The semantic patch used to make this change is : @@ @@ for (...;...;...) { ... if (...) { ... - continue; } } Signed-off-by: Shraddha Barke --- drivers/isdn/hardware/mISDN/hfcsusb.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c index 114f3bc..34e4b6c 100644 --- a/drivers/isdn/hardware/mISDN/hfcsusb.c +++ b/drivers/isdn/hardware/mISDN/hfcsusb.c @@ -1923,7 +1923,6 @@ hfcsusb_probe(struct usb_interface *intf, const struct usb_device_id *id) (le16_to_cpu(dev->descriptor.idProduct) == hfcsusb_idtab[i].idProduct)) { vend_idx = i; - continue; } } -- 2.1.0 -- 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/