Files
rtems/bsps/sparc/shared/amba/ambapp_parent.c
Sebastian Huber d60d303cf1 bsps/sparc: Move shared files to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-20 14:10:03 +02:00

24 lines
476 B
C

/*
* 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 <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;
}