Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/pci/probe_roms: Add missing __iomem annotation to pci_map_biosrom()

Stay in sync with the declaration and fix the corresponding
sparse warnings.

Signed-off-by: Mathias Krause <minipli@googlemail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Link: http://lkml.kernel.org/r/1346621506-30857-5-git-send-email-minipli@googlemail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Mathias Krause and committed by
Ingo Molnar
04d695a6 0ff8fef4

+1 -1
+1 -1
arch/x86/kernel/probe_roms.c
··· 150 150 return oprom; 151 151 } 152 152 153 - void *pci_map_biosrom(struct pci_dev *pdev) 153 + void __iomem *pci_map_biosrom(struct pci_dev *pdev) 154 154 { 155 155 struct resource *oprom = find_oprom(pdev); 156 156