diff options
Diffstat (limited to 'arch/powerpc/kernel/pci-common.c')
-rw-r--r-- | arch/powerpc/kernel/pci-common.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index faf5ef3e90d0..94b4a028232a 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -156,11 +156,14 @@ static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL); | |||
156 | #endif /* CONFIG_PPC_OF */ | 156 | #endif /* CONFIG_PPC_OF */ |
157 | 157 | ||
158 | /* Add sysfs properties */ | 158 | /* Add sysfs properties */ |
159 | void pcibios_add_platform_entries(struct pci_dev *pdev) | 159 | int pcibios_add_platform_entries(struct pci_dev *pdev) |
160 | { | 160 | { |
161 | #ifdef CONFIG_PPC_OF | 161 | #ifdef CONFIG_PPC_OF |
162 | device_create_file(&pdev->dev, &dev_attr_devspec); | 162 | return device_create_file(&pdev->dev, &dev_attr_devspec); |
163 | #else | ||
164 | return 0; | ||
163 | #endif /* CONFIG_PPC_OF */ | 165 | #endif /* CONFIG_PPC_OF */ |
166 | |||
164 | } | 167 | } |
165 | 168 | ||
166 | char __init *pcibios_setup(char *str) | 169 | char __init *pcibios_setup(char *str) |