コード例 #1
0
ファイル: pci_powerpc.c プロジェクト: OS2World/MM-SOUND-xine
static int pci_get_vendor(
          unsigned char bus,
          unsigned char dev,
          int func)
{
    int retval;
    pciconfig_read(bus, dev<<3, PCI_ID_REG, 4, &retval);
    return retval;
}
コード例 #2
0
ファイル: pci_powerpc.c プロジェクト: OS2World/MM-SOUND-xine
static long pci_config_read_byte(
          unsigned char bus,
          unsigned char dev,
          int func, 
          unsigned cmd)
{
    long retval;
    pciconfig_read(bus, dev<<3, cmd, 1, &retval);
    return retval;
}
コード例 #3
0
ファイル: pci_powerpc.c プロジェクト: basinilya/mplayer
static long pci_config_read_long(
          unsigned char bus,
          unsigned char dev,
          int func,
          unsigned cmd)
{
    unsigned retval;
    pciconfig_read(bus, dev<<3, cmd, 4, &retval);
    return retval;
}