From: Phil Sutter Date: Fri, 25 Dec 2015 13:41:17 +0000 (+0100) Subject: drivers/pci: Fix for debug builds without CONFIG_PCI_ENUM_ONLY X-Git-Tag: v2016.03-rc1~313^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=11131467933cd53cd244631b45df491723858449;p=platform%2Fkernel%2Fu-boot.git drivers/pci: Fix for debug builds without CONFIG_PCI_ENUM_ONLY The debug printing references bar_res, which exists only if CONFIG_PCI_ENUM_ONLY is not defined. Therefore move it into the ifdef'd area. Signed-off-by: Phil Sutter Acked-by: Stefan Roese Reviewed-by: Tom Rini --- diff --git a/drivers/pci/pci_auto_old.c b/drivers/pci/pci_auto_old.c index 9126f78..edc9a7b 100644 --- a/drivers/pci/pci_auto_old.c +++ b/drivers/pci/pci_auto_old.c @@ -101,11 +101,11 @@ void pciauto_setup_device(struct pci_controller *hose, bar_res = prefetch; else bar_res = mem; -#endif debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ", bar_nr, bar_res == prefetch ? "Prf" : "Mem", (unsigned long long)bar_size); +#endif } #ifndef CONFIG_PCI_ENUM_ONLY