[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAErSpo66rdt7F6sem0G0dz7ieRbeJG2P98WNhQBKacF0TWuvFA@mail.gmail.com>
Date: Tue, 8 Oct 2013 14:28:40 -0600
From: Bjorn Helgaas <bhelgaas@...gle.com>
To: Joe Perches <joe@...ches.com>
Cc: Kalle Valo <kvalo@....qualcomm.com>, ath10k@...ts.infradead.org,
Fengguang Wu <fengguang.wu@...el.com>,
linux-wireless@...r.kernel.org,
Julia Lawall <julia.lawall@...6.fr>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: remove unneeded semicolons
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists