]> mj.ucw.cz Git - pciutils.git/blob - lib/i386-io-sunos.h
libpci: i386-io-sunos.h: Implement intel_cleanup_io
[pciutils.git] / lib / i386-io-sunos.h
1 /*
2  *      The PCI Library -- Access to i386 I/O ports on Solaris
3  *
4  *      Copyright (c) 2003 Bill Moore <billm@eng.sun.com>
5  *      Copyright (c) 2003--2006 Martin Mares <mj@ucw.cz>
6  *
7  *      Can be freely distributed and used under the terms of the GNU GPL v2+
8  *
9  *      SPDX-License-Identifier: GPL-2.0-or-later
10  */
11
12 #include <sys/sysi86.h>
13 #include <sys/psw.h>
14
15 #include "i386-io-access.h"
16
17 static int
18 intel_setup_io(struct pci_access *a UNUSED)
19 {
20   return (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) < 0) ? 0 : 1;
21 }
22
23 static inline void
24 intel_cleanup_io(struct pci_access *a UNUSED)
25 {
26   sysi86(SI86V86, V86SC_IOPL, 0);
27 }
28
29 static inline void intel_io_lock(void)
30 {
31 }
32
33 static inline void intel_io_unlock(void)
34 {
35 }