Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix PCI hotplug printk format

Fix printk format warning:

drivers/pci/hotplug/acpiphp_ibm.c:207: warning: format '%08lx' expects type 'long unsigned int', but argument 3 has type 'long long unsigned int'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
325dcfdc 3a2c5dad

+1 -1
+1 -1
drivers/pci/hotplug/acpiphp_ibm.c
··· 204 204 err("APLS evaluation failed: 0x%08x\n", stat); 205 205 return -ENODEV; 206 206 } else if (!rc) { 207 - err("APLS method failed: 0x%08lx\n", rc); 207 + err("APLS method failed: 0x%08llx\n", rc); 208 208 return -ERANGE; 209 209 } 210 210 return 0;