aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2009-10-08 05:59:53 -0400
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-11-04 11:47:12 -0500
commit98e724c791924c0dfc5b1dcf053ed3841cc89c78 (patch)
tree654f2c6db2b6166d382f6c713e4e113201ff08ae /drivers/pci/pci.c
parent15ea76d407d560f985224b65fe59c9db01692a0d (diff)
PCI: pci_dfl_cache_line_size is __devinitdata
pci_dfl_cache_line_size is marked as __initdata but referenced by pci_init() which is __devinit. Make it __devinitdata instead of __initdata. Signed-off-by: Tejun Heo <tj@kernel.org> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r--drivers/pci/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index d1afbae5b1fb..3f8d971ac36e 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -53,7 +53,7 @@ unsigned long pci_hotplug_mem_size = DEFAULT_HOTPLUG_MEM_SIZE;
53 * the dfl or actual value as it sees fit. Don't forget this is 53 * the dfl or actual value as it sees fit. Don't forget this is
54 * measured in 32-bit words, not bytes. 54 * measured in 32-bit words, not bytes.
55 */ 55 */
56u8 pci_dfl_cache_line_size __initdata = L1_CACHE_BYTES >> 2; 56u8 pci_dfl_cache_line_size __devinitdata = L1_CACHE_BYTES >> 2;
57u8 pci_cache_line_size; 57u8 pci_cache_line_size;
58 58
59/** 59/**