Message type for BUSC_PCI_GET_BAR

Change-Id: I5cb21f09a2c80473101f8da3f435e4dcc3b05491
This commit is contained in:
2014-05-15 11:45:42 +02:00
parent b562831340
commit ff905e5276
4 changed files with 31 additions and 15 deletions

View File

@@ -20,8 +20,8 @@ int *ioflag;
message m;
m.m_type= BUSC_PCI_GET_BAR;
m.BUSC_PGB_DEVIND= devind;
m.BUSC_PGB_PORT= port;
m.m_lsys_pci_busc_get_bar.devind = devind;
m.m_lsys_pci_busc_get_bar.port = port;
r= ipc_sendrec(pci_procnr, &m);
if (r != 0)
@@ -29,9 +29,9 @@ int *ioflag;
if (m.m_type == 0)
{
*base= m.BUSC_PGB_BASE;
*size= m.BUSC_PGB_SIZE;
*ioflag= m.BUSC_PGB_IOFLAG;
*base= m.m_pci_lsys_busc_get_bar.base;
*size= m.m_pci_lsys_busc_get_bar.size;
*ioflag= m.m_pci_lsys_busc_get_bar.flags;
}
return m.m_type;
}