Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95849
b: refs/heads/master
c: b17b818
h: refs/heads/master
i:
  95847: 7d92e4c
v: v3
  • Loading branch information
Kumar Gala committed May 2, 2008
1 parent 97166a5 commit 63df889
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: 128cf7f2eb952a85875834c0d274da05ee0f02aa
refs/heads/master: b17b8181c97e88e6fac5aa704879ad61fdd67351
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/sysdev/xilinx_intc.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ xilinx_intc_init(struct device_node *np)
}
regs = ioremap(res.start, 32);

printk(KERN_INFO "Xilinx intc at 0x%08X mapped to 0x%p\n",
printk(KERN_INFO "Xilinx intc at 0x%08LX mapped to 0x%p\n",
res.start, regs);

/* Setup interrupt controller */
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/char/xilinx_hwicap/xilinx_hwicap.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,8 +623,8 @@ static int __devinit hwicap_setup(struct device *dev, int id,

if (!request_mem_region(drvdata->mem_start,
drvdata->mem_size, DRIVER_NAME)) {
dev_err(dev, "Couldn't lock memory region at %p\n",
(void *)regs_res->start);
dev_err(dev, "Couldn't lock memory region at %Lx\n",
regs_res->start);
retval = -EBUSY;
goto failed1;
}
Expand All @@ -643,7 +643,7 @@ static int __devinit hwicap_setup(struct device *dev, int id,
mutex_init(&drvdata->sem);
drvdata->is_open = 0;

dev_info(dev, "ioremap %lx to %p with size %x\n",
dev_info(dev, "ioremap %lx to %p with size %Lx\n",
(unsigned long int)drvdata->mem_start,
drvdata->base_address, drvdata->mem_size);

Expand Down

0 comments on commit 63df889

Please sign in to comment.