source: rtems/bsps/sparc/shared/amba/ambapp_count.c @ d60d303c

5
Last change on this file since d60d303c was d60d303c, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 11:33:24

bsps/sparc: Move shared files to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 547 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 <ambapp.h>
13
14/* Get number of devices matching search options */
15int ambapp_dev_count(struct ambapp_bus *abus, unsigned int options,
16      int vendor, int device)
17{
18  int count = 10000;
19
20  ambapp_for_each(abus, options, vendor, device, ambapp_find_by_idx, &count);
21
22  return 10000 - count;
23}
Note: See TracBrowser for help on using the repository browser.