| 377 | rt_uint32_t devfn, int reg, int width, rt_uint32_t value); |
| 378 | |
| 379 | rt_inline rt_err_t rt_pci_read_config_u8(const struct rt_pci_device *pdev, |
| 380 | int reg, rt_uint8_t *value) |
| 381 | { |
| 382 | return rt_pci_bus_read_config_u8(pdev->bus, pdev->devfn, reg, value); |
| 383 | } |
| 384 | |
| 385 | rt_inline rt_err_t rt_pci_read_config_u16(const struct rt_pci_device *pdev, |
| 386 | int reg, rt_uint16_t *value) |
no outgoing calls
no test coverage detected