From: Shawn Lin Date: Wed, 12 Jul 2017 09:59:06 +0000 (+0800) Subject: of: remove unused pci_space variable from address.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fda9f5d4a97cedba3174641263a49d82ff3c3469;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git of: remove unused pci_space variable from address.c It was never used and could be removed, otherwise we could see a warning: drivers/of/address.c: In function 'of_pci_range_parser_one': drivers/of/address.c:277:14: warning: variable 'pci_space' set but not used [-Wunused-but-set-variable] Signed-off-by: Shawn Lin Signed-off-by: Rob Herring --- diff --git a/drivers/of/address.c b/drivers/of/address.c index ca1c0f6301ea..792722e7d458 100644 --- a/drivers/of/address.c +++ b/drivers/of/address.c @@ -274,10 +274,9 @@ struct of_pci_range *of_pci_range_parser_one(struct of_pci_range_parser *parser, /* Now consume following elements while they are contiguous */ while (parser->range + parser->np <= parser->end) { - u32 flags, pci_space; + u32 flags; u64 pci_addr, cpu_addr, size; - pci_space = be32_to_cpup(parser->range); flags = of_bus_pci_get_flags(parser->range); pci_addr = of_read_number(parser->range + 1, ns); cpu_addr = of_translate_address(parser->node,