| 834 | } |
| 835 | |
| 836 | static rt_bool_t pci_remove_bus_device(struct rt_pci_device *pdev, void *data) |
| 837 | { |
| 838 | /* Bus will free if this is the last device */ |
| 839 | rt_bus_remove_device(&pdev->parent); |
| 840 | |
| 841 | /* To find all devices, always return false */ |
| 842 | return RT_FALSE; |
| 843 | } |
| 844 | |
| 845 | rt_err_t rt_pci_host_bridge_remove(struct rt_pci_host_bridge *host_bridge) |
| 846 | { |
nothing calls this directly
no test coverage detected