Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31090
b: refs/heads/master
c: 176dfc6
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jun 27, 2006
1 parent 063f2a0 commit 73af313
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 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: 1396a8c3f7cec9f5e0d00bd089be21fc468f0f1c
refs/heads/master: 176dfc633bbe4e03f4557d2beeefb4f0cc7f0efa
8 changes: 4 additions & 4 deletions trunk/drivers/mtd/devices/pmc551.c
Original file line number Diff line number Diff line change
Expand Up @@ -551,11 +551,11 @@ static u32 fixup_pmc551 (struct pci_dev *dev)
/*
* Some screen fun
*/
printk(KERN_DEBUG "pmc551: %d%c (0x%x) of %sprefetchable memory at 0x%lx\n",
printk(KERN_DEBUG "pmc551: %d%c (0x%x) of %sprefetchable memory at 0x%llx\n",
(size<1024)?size:(size<1048576)?size>>10:size>>20,
(size<1024)?'B':(size<1048576)?'K':'M',
size, ((dcmd&(0x1<<3)) == 0)?"non-":"",
(dev->resource[0].start)&PCI_BASE_ADDRESS_MEM_MASK );
(unsigned long long)((dev->resource[0].start)&PCI_BASE_ADDRESS_MEM_MASK));

/*
* Check to see the state of the memory
Expand Down Expand Up @@ -685,8 +685,8 @@ static int __init init_pmc551(void)
break;
}

printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%lX\n",
PCI_Device->resource[0].start);
printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%llx\n",
(unsigned long long)PCI_Device->resource[0].start);

/*
* The PMC551 device acts VERY weird if you don't init it
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mtd/maps/amd76xrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,10 @@ static int __devinit amd76xrom_init_one (struct pci_dev *pdev,
window->rsrc.parent = NULL;
printk(KERN_ERR MOD_NAME
" %s(): Unable to register resource"
" 0x%.08lx-0x%.08lx - kernel bug?\n",
" 0x%.16llx-0x%.16llx - kernel bug?\n",
__func__,
window->rsrc.start, window->rsrc.end);
(unsigned long long)window->rsrc.start,
(unsigned long long)window->rsrc.end);
}

#if 0
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mtd/maps/ichxrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,10 @@ static int __devinit ichxrom_init_one (struct pci_dev *pdev,
window->rsrc.parent = NULL;
printk(KERN_DEBUG MOD_NAME
": %s(): Unable to register resource"
" 0x%.08lx-0x%.08lx - kernel bug?\n",
" 0x%.16llx-0x%.16llx - kernel bug?\n",
__func__,
window->rsrc.start, window->rsrc.end);
(unsigned long long)window->rsrc.start,
(unsigned long long)window->rsrc.end);
}

/* Map the firmware hub into my address space. */
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mtd/maps/scx200_docflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,9 @@ static int __init init_scx200_docflash(void)
outl(pmr, scx200_cb_base + SCx200_PMR);
}

printk(KERN_INFO NAME ": DOCCS mapped at 0x%lx-0x%lx, width %d\n",
docmem.start, docmem.end, width);
printk(KERN_INFO NAME ": DOCCS mapped at 0x%llx-0x%llx, width %d\n",
(unsigned long long)docmem.start,
(unsigned long long)docmem.end, width);

scx200_docflash_map.size = size;
if (width == 8)
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mtd/maps/sun_uflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ int uflash_devinit(struct linux_ebus_device *edev, struct device_node *dp)
/* Non-CFI userflash device-- once I find one we
* can work on supporting it.
*/
printk("%s: unsupported device at 0x%lx (%d regs): " \
printk("%s: unsupported device at 0x%llx (%d regs): " \
"email ebrower@usa.net\n",
dp->full_name, res->start, edev->num_addrs);
dp->full_name, (unsigned long long)res->start,
edev->num_addrs);

return -ENODEV;
}
Expand Down

0 comments on commit 73af313

Please sign in to comment.