summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr/drvmgr_dev_by_name.c
blob: f5a99ee69664b5fb7be489b26ab3f1e3a0e07652 (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
29
30
31
32
33
34
/* Find device by device name
 *
 * COPYRIGHT (c) 2011.
 * 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.com/license/LICENSE.
 *
 */

#include <string.h>
#include <drvmgr/drvmgr.h>
#include "drvmgr_internal.h"

static int dev_name_compare(struct drvmgr_dev *dev, void *arg)
{
	const char *name = arg;

	if (dev->name && (strcmp(dev->name, name) == 0))
		return (int)dev;
	else
		return 0;
}

/* Get device by device name or bus name */
struct drvmgr_dev *drvmgr_dev_by_name(const char *name)
{
	if (!name)
		return NULL;

	return (struct drvmgr_dev *)
		drvmgr_for_each_dev(dev_name_compare, (void *)name, 0);
}