From a161e42e828da756f424d29d8f153433d643bd16 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 25 May 2010 13:58:52 +0100 Subject: [PATCH] [PATCH 11/12] remove unimplimented PCI api --- src/libCom/osi/devLibVME.h | 57 -------------------------------------- 1 file changed, 57 deletions(-) diff --git a/src/libCom/osi/devLibVME.h b/src/libCom/osi/devLibVME.h index 3644f5b7c..6d7476098 100644 --- a/src/libCom/osi/devLibVME.h +++ b/src/libCom/osi/devLibVME.h @@ -232,63 +232,6 @@ epicsShareFunc long devEnableInterruptLevelISA (unsigned level); */ epicsShareFunc long devDisableInterruptLevelISA (unsigned level); - -/* - * PCI API - * - * Functions in this section apply only to the ISA bus type - */ - -/* - * connect ISR to a PCI interrupt - * (not implemented) - * (API should be reviewed) - */ -epicsShareFunc long devConnectInterruptPCI( - unsigned bus, - unsigned device, - unsigned function, - void (*pFunction)(void *), - void *parameter); - -/* - * disconnect ISR from a PCI interrupt - * (not implemented) - * (API should be reviewed) - * - * The parameter pFunction should be set to the C function pointer that - * was connected. It is used as a key to prevent a driver from inadvertently - * removing an interrupt handler that it didn't install - */ -epicsShareFunc long devDisconnectInterruptPCI( - unsigned bus, - unsigned device, - unsigned function, - void (*pFunction)(void *)); - -/* - * determine if a PCI interrupt is in use - * (not implemented) - * - * returns boolean - */ -epicsShareFunc int devInterruptInUsePCI (unsigned bus, unsigned device, - unsigned function); - - -/* - * not implemented - API needs to be reviewed - */ -epicsShareFunc long devEnableInterruptLevelPCI (unsigned level, - unsigned bus, unsigned device, unsigned function); - -/* - * not implemented - API needs to be reviewed - */ -epicsShareFunc long devDisableInterruptLevelPCI (unsigned level, - unsigned bus, unsigned device, unsigned function); - - /* * Deprecated interface */