summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/include/drvmgr/bspcommon.h
blob: d3470009f865ffb08e0c4c145d56fd0d292a00b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*  Common BSP/driver configuration routines.
 *
 *  COPYRIGHT (c) 2015.
 *  Cobham Gaisler.
 *
 *  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.
 *
 */

#ifndef __BSPCOMMON_H__
#define __BSPCOMMON_H__

#include <drvmgr/drvmgr.h>

#ifdef __cplusplus
extern "C" {
#endif

/* Count driver resource array length. Array must be terminated with a NULL */
int get_resarray_count(struct drvmgr_bus_res **array);

#ifdef __cplusplus
}
#endif

#endif