Displaying 4 results from an estimated 4 matches for "businfo".
Did you mean:
bus_info
2008 Dec 12
0
[PATCH 1/1] COM32: lua - add pci library
Back again,
the included patch adds pci functions from com32/modules/pcitest.c to lua.
Example:
-- get device info
pciinfo = pci.getinfo()
-- get plain text device description
pciids = pci.getidlist("/pci.ids")
-- list all pci busses
for bind,businfo in pairs(pciinfo) do
print("Bus: " .. bind .. " Devices:")
-- list all devices on bus
for dind,device in pairs(businfo) do
-- search for device description
search = device['vendor'] .. device['product']
if ( pciids[search] ) then
print(...
2016 Sep 21
0
CentOS-6.8 PCI Hwdr issue?
...1 Parallel controller: Oxford Semiconductor Ltd OX16PCI954 (Quad
16950 UART) function 0 (Disabled)
04:00.0 IDE interface: Marvell Technology Group Ltd. 88SE6101/6102
single-port PATA133 interface (rev b2)
05:00.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6315 Series
Firewire Controller
lshw -businfo
Bus info Device Class Description
========================================================
. . .
memory 32KiB L1 cache
memory 2MiB L2 cache
memory 16GiB System Me...
2007 Nov 02
0
[PATCH] PVWin: Fix warnings
...((__DRIVER_NAME " Hypercall area is %u pages.\n", pages));
hypercall_stubs = ExAllocatePoolWithTag(NonPagedPool, pages *
PAGE_SIZE, XENPCI_POOL_TAG);
@@ -261,7 +238,6 @@ XenPCI_AddDevice(
WDF_IO_QUEUE_CONFIG ioQConfig;
WDF_INTERRUPT_CONFIG interruptConfig;
PNP_BUS_INFORMATION busInfo;
- WDF_FDO_EVENT_CALLBACKS FdoCallbacks;
//PDEVICE_OBJECT pdo;
//ULONG propertyAddress, length;
@@ -371,7 +347,8 @@ XenPCI_PrepareHardware(
NTSTATUS status = STATUS_SUCCESS;
PCM_PARTIAL_RESOURCE_DESCRIPTOR descriptor;
ULONG i;
- PXENPCI_DEVICE_DATA deviceData = GetDeviceData(Devic...
2008 Mar 06
0
[ANNOUNCE] xorg-server 1.4.99.901
...Let's call a duck a duck,
Don't re-look-up pointers that are already stored in structures.
Gut anything having to do with the PciBusPtr (or PciBusRec) type.
Pass correct pointer to xf86MapLegacyIO.
Build fixes for last pull from HEAD.
Eliminate all uses of the businfo field of pciDevice / pciConfigPtr.
Remove pciConfigPtr and all of the associated cruft.
Modify xf86FindPciDeviceVendor and xf86FindPciClass to use the
Move xf86FindPciDeviceVendor and xf86FindPciClass from xf86pciBus.c to
Remove the last remants of the pci{Read,Write}{Long,W...