Commit 58520360 authored by Jan Beulich's avatar Jan Beulich Committed by David Vrabel
Browse files

xen-pciback: use const and unsigned in bar_init()

parent c8670c22
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -211,8 +211,8 @@ static int bar_read(struct pci_dev *dev, int offset, u32 * value, void *data)

static void *bar_init(struct pci_dev *dev, int offset)
{
	int	pos;
	struct resource	*res = dev->resource;
	unsigned int pos;
	const struct resource *res = dev->resource;
	struct pci_bar_info *bar = kzalloc(sizeof(*bar), GFP_KERNEL);

	if (!bar)