diff options
-rw-r--r-- | arch/sparc64/kernel/pci.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/sparc64/kernel/pci.c b/arch/sparc64/kernel/pci.c index a61c38fe75ea..545356b00e2e 100644 --- a/arch/sparc64/kernel/pci.c +++ b/arch/sparc64/kernel/pci.c | |||
@@ -225,20 +225,6 @@ static int __init pci_controller_init(const char *model_name, int namelen, struc | |||
225 | return 0; | 225 | return 0; |
226 | } | 226 | } |
227 | 227 | ||
228 | static int __init pci_is_controller(const char *model_name, int namelen, struct device_node *dp) | ||
229 | { | ||
230 | int i; | ||
231 | |||
232 | for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) { | ||
233 | if (!strncmp(model_name, | ||
234 | pci_controller_table[i].model_name, | ||
235 | namelen)) { | ||
236 | return 1; | ||
237 | } | ||
238 | } | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *)) | 228 | static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *)) |
243 | { | 229 | { |
244 | struct device_node *dp; | 230 | struct device_node *dp; |
@@ -273,13 +259,6 @@ static int __init pci_controller_scan(int (*handler)(const char *, int, struct d | |||
273 | return count; | 259 | return count; |
274 | } | 260 | } |
275 | 261 | ||
276 | |||
277 | /* Is there some PCI controller in the system? */ | ||
278 | int __init pcic_present(void) | ||
279 | { | ||
280 | return pci_controller_scan(pci_is_controller); | ||
281 | } | ||
282 | |||
283 | /* Find each controller in the system, attach and initialize | 262 | /* Find each controller in the system, attach and initialize |
284 | * software state structure for each and link into the | 263 | * software state structure for each and link into the |
285 | * pci_pbm_root. Setup the controller enough such | 264 | * pci_pbm_root. Setup the controller enough such |