Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755642Ab3JHU2n (ORCPT ); Tue, 8 Oct 2013 16:28:43 -0400 Received: from mail-ie0-f180.google.com ([209.85.223.180]:40919 "EHLO mail-ie0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752896Ab3JHU2l (ORCPT ); Tue, 8 Oct 2013 16:28:41 -0400 MIME-Version: 1.0 In-Reply-To: <1381260511.2081.250.camel@joe-AO722> References: <20131008184815.3778.52129.stgit@localhost6.localdomain6> <1381260511.2081.250.camel@joe-AO722> Date: Tue, 8 Oct 2013 14:28:40 -0600 Message-ID: Subject: Re: remove unneeded semicolons From: Bjorn Helgaas To: Joe Perches Cc: Kalle Valo , ath10k@lists.infradead.org, Fengguang Wu , linux-wireless@vger.kernel.org, Julia Lawall , LKML Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1119 Lines: 39 Thanks, Joe. I picked up the drivers/pci changes below and will merge them in the v3.13 merge window if nobody else does it first. Bjorn diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index cdc7836..46d1378 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -222,7 +222,7 @@ static long proc_bus_pci_ioctl(struct file *file, unsigned int cmd, default: ret = -EINVAL; break; - }; + } return ret; } diff --git a/drivers/pci/syscall.c b/drivers/pci/syscall.c index e1c1ec5..24750a1 100644 --- a/drivers/pci/syscall.c +++ b/drivers/pci/syscall.c @@ -44,7 +44,7 @@ SYSCALL_DEFINE5(pciconfig_read, unsigned long, bus, unsigned long, dfn, default: err = -EINVAL; goto error; - }; + } err = -EIO; if (cfg_ret != PCIBIOS_SUCCESSFUL) -- 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/