git: a18502645663 - stable/14 - simplebus: Implement bus_delete_resource
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 27 Feb 2025 14:16:59 UTC
The branch stable/14 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=a185026456636915d727465ae87a70697cc8deaa
commit a185026456636915d727465ae87a70697cc8deaa
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2024-02-16 00:05:00 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-02-27 13:09:21 +0000
simplebus: Implement bus_delete_resource
(cherry picked from commit e89d0785ff1332d234ae4382a849f3c23e23573a)
---
sys/dev/fdt/simplebus.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/fdt/simplebus.c b/sys/dev/fdt/simplebus.c
index 854494eb4899..4c6f5921b713 100644
--- a/sys/dev/fdt/simplebus.c
+++ b/sys/dev/fdt/simplebus.c
@@ -105,6 +105,7 @@ static device_method_t simplebus_methods[] = {
DEVMETHOD(bus_unmap_resource, simplebus_unmap_resource),
DEVMETHOD(bus_set_resource, bus_generic_rl_set_resource),
DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource),
+ DEVMETHOD(bus_delete_resource, bus_generic_rl_delete_resource),
DEVMETHOD(bus_child_pnpinfo, ofw_bus_gen_child_pnpinfo),
DEVMETHOD(bus_get_resource_list, simplebus_get_resource_list),
DEVMETHOD(bus_get_property, simplebus_get_property),