| 149 | } |
| 150 | |
| 151 | void ResourceManager::RegisterI2CBus(i2c_smbus_interface *bus) |
| 152 | { |
| 153 | LOG_INFO("Registering I2C interface: %s Device %04X:%04X Subsystem: %04X:%04X", bus->device_name, bus->pci_vendor, bus->pci_device,bus->pci_subsystem_vendor,bus->pci_subsystem_device); |
| 154 | busses.push_back(bus); |
| 155 | } |
| 156 | |
| 157 | std::vector<i2c_smbus_interface*> & ResourceManager::GetI2CBusses() |
| 158 | { |
no test coverage detected