[PATCH v4 5/7] xen-pciback: use const and unsigned in bar_init()

From: Jan Beulich
Date: Wed Jul 06 2016 - 02:59:05 EST


Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
---
drivers/xen/xen-pciback/conf_space_header.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- 4.7-rc6-xen-pciback.orig/drivers/xen/xen-pciback/conf_space_header.c
+++ 4.7-rc6-xen-pciback/drivers/xen/xen-pciback/conf_space_header.c
@@ -211,8 +211,8 @@ static int bar_read(struct pci_dev *dev,

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)