c114df82ec
Remove all uses of U16_t and U32_t in pci-related code. If necessary to avoid problems, change functions to ansi-style declaration.
29 lines
613 B
C
29 lines
613 B
C
/*
|
|
pci_attr_w8.c
|
|
*/
|
|
|
|
#include "pci.h"
|
|
#include "syslib.h"
|
|
#include <minix/sysutil.h>
|
|
|
|
/*===========================================================================*
|
|
* pci_attr_w8 *
|
|
*===========================================================================*/
|
|
PUBLIC void pci_attr_w8(int devind, int port, u8_t value)
|
|
{
|
|
int r;
|
|
message m;
|
|
|
|
m.m_type= BUSC_PCI_ATTR_W8;
|
|
m.m2_i1= devind;
|
|
m.m2_i2= port;
|
|
m.m2_l1= value;
|
|
|
|
r= sendrec(pci_procnr, &m);
|
|
if (r != 0)
|
|
panic("pci_attr_w8: can't talk to PCI: %d", r);
|
|
|
|
if (m.m_type != 0)
|
|
panic("pci_attr_w8: got bad reply from PCI: %d", m.m_type);
|
|
}
|
|
|