Files
rtems/bsps/shared/grlib/amba/ambapp_parent.c

24 lines
482 B
C
Raw Normal View History

/*
* 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>
2018-12-22 07:13:44 +01:00
#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;
}