[PATCH] 64bit resource: fix up printks for resources in mtd drivers
This is needed if we wish to change the size of the resource structures. Based on an original patch from Vivek Goyal <vgoyal@in.ibm.com> Cc: Vivek Goyal <vgoyal@in.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user