view libdha/test.c @ 20437:b78d2a74623b

r20379: Remove doubled -dvd-device information. r20392: misc fixes. r20399: Remove bio2jack from list of required software. r20401: <replacable> tag aren't needed in literal example. r20412: Fix some inconsistences pointed out by Torinthiel. r20417: s/DarwinPorts/MaxPorts/ r20419: Yet more CVS->SVN. ... r20442: Remove confusing and probably wrong paragraph about libdvdcss. r20449: Typo fix.
author voroshil
date Thu, 26 Oct 2006 08:03:06 +0000
parents 972d1998bde9
children
line wrap: on
line source

#include "libdha.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main( void )
{
  pciinfo_t lst[MAX_PCI_DEVICES];
  unsigned i,num_pci;
  int err;
  err = pci_scan(lst,&num_pci);
  if(err)
  {
    printf("Error occurred during pci scan: %s\n",strerror(err));
    return EXIT_FAILURE;
  }
  else
  {
    printf(" Bus:card:func vend:dev  command base0   :base1   :base2   :baserom\n");
    for(i=0;i<num_pci;i++)
      printf("%04X:%04X:%04X %04X:%04X %04X    %08X:%08X:%08X:%08X\n"
    	    ,lst[i].bus,lst[i].card,lst[i].func
	    ,lst[i].vendor,lst[i].device,lst[i].command
	    ,lst[i].base0,lst[i].base1,lst[i].base2,lst[i].baserom);
  }
  return EXIT_SUCCESS;
}