Skip to content

Commit

Permalink
[SPARC64]: Kill spurious semicolon in sun4v_pci_init().
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 20, 2006
1 parent 1ddb7c9 commit d5eb400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sparc64/kernel/pci_sun4v.c
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ void sun4v_pci_init(int node, char *model_name)
unsigned int devhandle;

prom_getproperty(node, "reg", (char *)&regs, sizeof(regs));
devhandle = (regs.phys_addr >> 32UL) & 0x0fffffff;;
devhandle = (regs.phys_addr >> 32UL) & 0x0fffffff;

for (p = pci_controller_root; p; p = p->next) {
struct pci_pbm_info *pbm;
Expand Down

0 comments on commit d5eb400

Please sign in to comment.