summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/shared/amba/ambapp_alloc.c
blob: 2357f697b9be84273ccf125d76944d6ca8236d7f (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
/*
 *  AMBA Plug & Play routines
 *
 *  COPYRIGHT (c) 2011
 *  Aeroflex 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.
 */

#include <ambapp.h>

int ambapp_alloc_dev(struct ambapp_dev *dev, void *owner)
{
  if (dev->owner)
    return -1;
  dev->owner = owner;
  return 0;
}

void ambapp_free_dev(struct ambapp_dev *dev)
{
  dev->owner = 0;
}