summaryrefslogtreecommitdiffstats
path: root/cpukit/libpci/pci_for_each_dev.c
blob: 4cc6e63f3f6a4b965f8121ebfa7a72ddcdaea1a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*  PCI Help function, iterate all PCI devices.
 *
 *  COPYRIGHT (c) 2010 Cobham Gaisler AB.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#include <pci/cfg.h>

int pci_for_each_dev(
	int (*func)(struct pci_dev *, void *arg),
	void *arg)
{
	return pci_for_each_child(&pci_hb, func, arg, SEARCH_DEPTH);
}