]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/i386-io-sunos.h
cxl: Rename caps to be device caps
[pciutils.git] / lib / i386-io-sunos.h
index 753e2ea6076f72d216eee4503ee2adc4d7ac3006..903ad7c6a3be88ccfd206f5b81f254af64998c24 100644 (file)
 #include <sys/psw.h>
 
 static int
-intel_setup_io(void)
+intel_setup_io(struct pci_access *a UNUSED)
 {
   return (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) < 0) ? 0 : 1;
 }
 
-static inline int
-intel_cleanup_io(void)
+static inline void
+intel_cleanup_io(struct pci_access *a UNUSED)
 {
   /* FIXME: How to switch off I/O port access? */
-  return 1;
 }
 
 static inline u8
@@ -64,3 +63,11 @@ outl (u32 value, u16 port)
 {
   __asm__ __volatile__ ("outl (%w1)": :"a" (value), "Nd" (port));
 }
+
+static inline void intel_io_lock(void)
+{
+}
+
+static inline void intel_io_unlock(void)
+{
+}