summaryrefslogtreecommitdiffstats
path: root/bsps/shared/grlib/amba/ambapp_parent.c
blob: b77b6eec6874bebd566ba32794ed9daab1fd1a3e (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
/*
 *  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 <stdlib.h>
#include <grlib/ambapp.h>

struct ambapp_dev *ambapp_find_parent(struct ambapp_dev *dev)
{
  while (dev->prev) {
    if (dev == dev->prev->children)
      return dev->prev;
    dev = dev->prev;
  }
  return NULL;
}