[PA-RISC] Remove warning from pci.c

max() doesn't like comparing an unsigned long and a resource_size_t,
so make the local variables resource_size_t too.

Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>

authored by Matthew Wilcox and committed by Matthew Wilcox ccd6c355 15c130c1

+1 -1
+1 -1
arch/parisc/kernel/pci.c
··· 290 290 void pcibios_align_resource(void *data, struct resource *res, 291 291 resource_size_t size, resource_size_t alignment) 292 292 { 293 - unsigned long mask, align; 293 + resource_size_t mask, align; 294 294 295 295 DBG_RES("pcibios_align_resource(%s, (%p) [%lx,%lx]/%x, 0x%lx, 0x%lx)\n", 296 296 pci_name(((struct pci_dev *) data)),