Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Kernel / include / drv_pci.h
diff --git a/Kernel/include/drv_pci.h b/Kernel/include/drv_pci.h
deleted file mode 100644 (file)
index 33c4a3e..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-/**\r
- * \file drv_pci.h\r
- * \brief PCI Bus Driver\r
- * \author John Hodge (thePowersGang)\r
- */\r
-#ifndef _DRV_PCI_H\r
-#define _DRV_PCI_H\r
-\r
-/**\r
- * \brief PCI Class Codes\r
- */\r
-enum ePCIClasses\r
-{\r
-       PCI_CLASS_PRE20 = 0x00,\r
-       PCI_CLASS_STORAGE,\r
-       PCI_CLASS_NETWORK,\r
-       PCI_CLASS_DISPLAY,\r
-       PCI_CLASS_MULTIMEDIA,\r
-       PCI_CLASS_MEMORY,\r
-       PCI_CLASS_BRIDGE,\r
-       PCI_CLASS_COMM,\r
-       PCI_CLASS_PREPH,\r
-       PCI_CLASS_INPUT,\r
-       PCI_CLASS_DOCKING,\r
-       PCI_CLASS_PROCESSORS,\r
-       PCI_CLASS_SERIALBUS,\r
-       PCI_CLASS_MISC = 0xFF\r
-};\r
-\r
-enum ePCIOverClasses\r
-{\r
-       PCI_OC_PCIBRIDGE = 0x060400,\r
-       PCI_OC_SCSI = 0x010000\r
-};\r
-\r
-typedef int    tPCIDev;\r
-\r
-/**\r
- * \brief Count PCI Devices\r
- * \r
- * Counts the number of devices with specified Vendor and Device IDs\r
- */\r
-extern int     PCI_CountDevices(Uint16 VendorID, Uint16 DeviceID);\r
-extern tPCIDev PCI_GetDevice(Uint16 VendorID, Uint16 DeviceID, int index);\r
-/**\r
- * \param ClassCode (Class:SubClass:PI)\r
- */\r
-extern tPCIDev PCI_GetDeviceByClass(Uint32 ClassCode, Uint32 Mask, tPCIDev prev);\r
-\r
-extern int     PCI_GetDeviceInfo(tPCIDev id, Uint16 *Vendor, Uint16 *Device, Uint32 *Class);\r
-extern int     PCI_GetDeviceVersion(tPCIDev id, Uint8 *Revision);\r
-extern int     PCI_GetDeviceSubsys(tPCIDev id, Uint16 *SubsystemVendor, Uint16 *SubsystemID);\r
-\r
-extern Uint32  PCI_ConfigRead(tPCIDev id, int Offset, int Size);\r
-extern void    PCI_ConfigWrite(tPCIDev id, int Offset, int Size, Uint32 Value);\r
-\r
-extern Uint8   PCI_GetIRQ(tPCIDev id);\r
-extern Uint32  PCI_GetBAR(tPCIDev id, int BAR);\r
-//extern Uint16        PCI_AssignPort(tPCIDev id, int bar, int count);\r
-\r
-#endif\r

UCC git Repository :: git.ucc.asn.au