Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 127691
b: refs/heads/master
c: b36ac9e
h: refs/heads/master
i:
  127689: 8404c77
  127687: a97fe3f
v: v3
  • Loading branch information
Ingo Molnar authored and Benjamin Herrenschmidt committed Jan 8, 2009
1 parent 6b3b800 commit d4ff3ae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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: 19b0bd025d6647549e07becf02b99e5168c17432
refs/heads/master: b36ac9e84b4a3602bd07c2b7cf995f88f76d8428
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/cell/interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static unsigned int iic_get_irq(void)

iic = &__get_cpu_var(iic);
*(unsigned long *) &pending =
in_be64((unsigned long __iomem *) &iic->regs->pending_destr);
in_be64((u64 __iomem *) &iic->regs->pending_destr);
if (!(pending.flags & CBE_IIC_IRQ_VALID))
return NO_IRQ;
virq = irq_linear_revmap(iic_host, iic_pending_to_hwnum(pending));
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/platforms/cell/io-workarounds.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ static const struct ppc_pci_io __devinitconst iowa_pci_io = {

};

static void __iomem *iowa_ioremap(unsigned long addr, unsigned long size,
static void __iomem *iowa_ioremap(phys_addr_t addr, unsigned long size,
unsigned long flags)
{
struct iowa_bus *bus;
void __iomem *res = __ioremap(addr, size, flags);
int busno;

bus = iowa_pci_find(0, addr);
bus = iowa_pci_find(0, (unsigned long)addr);
if (bus != NULL) {
busno = bus - iowa_busses;
PCI_SET_ADDR_TOKEN(res, busno + 1);
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/platforms/cell/iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ static int cbe_nr_iommus;
static void invalidate_tce_cache(struct cbe_iommu *iommu, unsigned long *pte,
long n_ptes)
{
unsigned long __iomem *reg;
unsigned long val;
u64 __iomem *reg;
u64 val;
long n;

reg = iommu->xlate_regs + IOC_IOPT_CacheInvd;
Expand Down

0 comments on commit d4ff3ae

Please sign in to comment.