git: 8fca57469f7c - stable/15 - LinuxKPI: pci: allow children to be attached to a pci_dev

From: Bjoern A. Zeeb <bz_at_FreeBSD.org>
Date: Mon, 15 Sep 2025 19:11:08 UTC
The branch stable/15 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=8fca57469f7c33367c5f32f738a8fa8af40b6dda

commit 8fca57469f7c33367c5f32f738a8fa8af40b6dda
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-09-04 20:22:30 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-09-15 14:51:18 +0000

    LinuxKPI: pci: allow children to be attached to a pci_dev
    
    This will be used for hooking suspend/resume in for LinuxKPI 802.11
    based drivers.
    
    Sponsored by:   The FreeBSD Foundation (initially)
    Reviewed by:    dumbbell
    Differential Revision:  https://reviews.freebsd.org/D52070
    
    (cherry picked from commit 627234627b51c2f12c29d10617d7bbd18936ea55)
---
 sys/compat/linuxkpi/common/src/linux_pci.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys/compat/linuxkpi/common/src/linux_pci.c b/sys/compat/linuxkpi/common/src/linux_pci.c
index 7db8af8e88f9..43fd6ad28ac4 100644
--- a/sys/compat/linuxkpi/common/src/linux_pci.c
+++ b/sys/compat/linuxkpi/common/src/linux_pci.c
@@ -111,6 +111,9 @@ static device_method_t pci_methods[] = {
 	DEVMETHOD(pci_iov_uninit, linux_pci_iov_uninit),
 	DEVMETHOD(pci_iov_add_vf, linux_pci_iov_add_vf),
 
+	/* Bus interface. */
+	DEVMETHOD(bus_add_child, bus_generic_add_child),
+
 	/* backlight interface */
 	DEVMETHOD(backlight_update_status, linux_backlight_update_status),
 	DEVMETHOD(backlight_get_status, linux_backlight_get_status),