source: rtems/bsps/sparc/shared/amba/ambapp_parent.c @ 31720925

5
Last change on this file since 31720925 was 31720925, checked in by Sebastian Huber <sebastian.huber@…>, on 12/22/18 at 06:13:44

grlib: Move header files

Update #3678.

  • Property mode set to 100644
File size: 482 bytes
Line 
1/*
2 *  AMBA Plug & Play routines
3 *
4 *  COPYRIGHT (c) 2011
5 *  Aeroflex Gaisler
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.org/license/LICENSE.
10 */
11
12#include <stdlib.h>
13#include <grlib/ambapp.h>
14
15struct ambapp_dev *ambapp_find_parent(struct ambapp_dev *dev)
16{
17  while (dev->prev) {
18    if (dev == dev->prev->children)
19      return dev->prev;
20    dev = dev->prev;
21  }
22  return NULL;
23}
Note: See TracBrowser for help on using the repository browser.