Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 305374
b: refs/heads/master
c: dce4c92
h: refs/heads/master
v: v3
  • Loading branch information
Josh Boyer committed May 4, 2012
1 parent b47a4c4 commit ec2fd68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9c6b2353dfb80ae843b831c03fc53ddc5c3949ff
refs/heads/master: dce4c92d69db53ed0e09191428f17ac9a14ad248
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/sysdev/ppc4xx_msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ static int ppc4xx_setup_pcieh_hw(struct platform_device *dev,
msi_virt = dma_alloc_coherent(&dev->dev, 64, &msi_phys, GFP_KERNEL);
if (!msi_virt)
return -ENOMEM;
msi->msi_addr_hi = (u32)(msi_phys >> 32);
msi->msi_addr_lo = (u32)(msi_phys & 0xffffffff);
msi->msi_addr_hi = upper_32_bits(msi_phys);
msi->msi_addr_lo = lower_32_bits(msi_phys & 0xffffffff);
dev_dbg(&dev->dev, "PCIE-MSI: msi address high 0x%x, low 0x%x\n",
msi->msi_addr_hi, msi->msi_addr_lo);

Expand Down

0 comments on commit ec2fd68

Please sign in to comment.