diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 16:45:23 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-08 01:06:34 +0200 |
commit | 6cb79b3f3ba2b14590cac02ee13ab7410b6225ed (patch) | |
tree | 2439e8509e3f42fc2c14abbdc23f62e76ce77a0e /arch/sparc/kernel/pci_common.c | |
parent | Add support for allocating irqs for bootbus devices (diff) | |
download | linux-6cb79b3f3ba2b14590cac02ee13ab7410b6225ed.tar.xz linux-6cb79b3f3ba2b14590cac02ee13ab7410b6225ed.zip |
sparc: Remove unnecessary semicolons
Semicolons are not necessary after switch/while/for/if braces
so remove them.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/pci_common.c')
-rw-r--r-- | arch/sparc/kernel/pci_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/pci_common.c b/arch/sparc/kernel/pci_common.c index 6e3874b64488..a6895987fb70 100644 --- a/arch/sparc/kernel/pci_common.c +++ b/arch/sparc/kernel/pci_common.c @@ -281,7 +281,7 @@ static int sun4v_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, case 4: *value = ret & 0xffffffff; break; - }; + } return PCIBIOS_SUCCESSFUL; @@ -456,7 +456,7 @@ void pci_determine_mem_io_space(struct pci_pbm_info *pbm) default: break; - }; + } } if (!saw_io || !saw_mem) { |