[PATCH] i2c-801: 64bit resource fix

drivers/i2c/busses/i2c-i801.c: In function 'i801_probe':
drivers/i2c/busses/i2c-i801.c:496: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'resource_size_t'

Cc: Greg KH <greg@kroah.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Andrew Morton and committed by Linus Torvalds 598736c5 cfa7b0d4

+2 -2
+2 -2
drivers/i2c/busses/i2c-i801.c
··· 494 494 err = pci_request_region(dev, SMBBAR, i801_driver.name); 495 495 if (err) { 496 496 dev_err(&dev->dev, "Failed to request SMBus region " 497 - "0x%lx-0x%lx\n", i801_smba, 498 - pci_resource_end(dev, SMBBAR)); 497 + "0x%lx-0x%Lx\n", i801_smba, 498 + (unsigned long long)pci_resource_end(dev, SMBBAR)); 499 499 goto exit; 500 500 } 501 501