Backport of fix from asynchvfs branch for PM-LOG-VFS-PM deadlock that resulted in...
[minix3-old.git] / lib / syslib / pci_attr_r8.c
blobd08a6851ef39de31f2cb6737000362ea1558bba1
1 /*
2 pci_attr_r8.c
3 */
5 #include "pci.h"
6 #include "syslib.h"
7 #include <minix/sysutil.h>
9 /*===========================================================================*
10 * pci_attr_r8 *
11 *===========================================================================*/
12 PUBLIC u8_t pci_attr_r8(devind, port)
13 int devind;
14 int port;
16 int r;
17 message m;
19 m.m_type= BUSC_PCI_ATTR_R8;
20 m.m2_i1= devind;
21 m.m2_i2= port;
23 r= sendrec(pci_procnr, &m);
24 if (r != 0)
25 panic("syslib/" __FILE__, "pci_attr_r8: can't talk to PCI", r);
27 if (m.m_type != 0)
28 panic("syslib/" __FILE__, "pci_attr_r8: got bad reply from PCI", m.m_type);
30 return m.m2_l1;