51 lines
1.1 KiB
ReStructuredText
Raw Normal View History

2026-01-21 18:59:54 +08:00
.. SPDX-License-Identifier: GPL-2.0-only
2026-01-29 22:25:33 +08:00
.. _auxiliary_bus:
2026-01-21 18:59:54 +08:00
=============
Auxiliary Bus
=============
2026-01-29 22:25:33 +08:00
.. kernel-doc:: drivers/base/auxiliary.c
:doc: PURPOSE
2026-01-21 18:59:54 +08:00
When Should the Auxiliary Bus Be Used
=====================================
2026-01-29 22:25:33 +08:00
.. kernel-doc:: drivers/base/auxiliary.c
:doc: USAGE
Auxiliary Device Creation
=========================
.. kernel-doc:: include/linux/auxiliary_bus.h
:identifiers: auxiliary_device
.. kernel-doc:: drivers/base/auxiliary.c
:identifiers: auxiliary_device_init __auxiliary_device_add
auxiliary_find_device
2026-01-21 18:59:54 +08:00
Auxiliary Device Memory Model and Lifespan
------------------------------------------
2026-01-29 22:25:33 +08:00
.. kernel-doc:: include/linux/auxiliary_bus.h
:doc: DEVICE_LIFESPAN
2026-01-21 18:59:54 +08:00
Auxiliary Drivers
=================
2026-01-29 22:25:33 +08:00
.. kernel-doc:: include/linux/auxiliary_bus.h
:identifiers: auxiliary_driver module_auxiliary_driver
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
.. kernel-doc:: drivers/base/auxiliary.c
:identifiers: __auxiliary_driver_register auxiliary_driver_unregister
2026-01-21 18:59:54 +08:00
Example Usage
=============
2026-01-29 22:25:33 +08:00
.. kernel-doc:: drivers/base/auxiliary.c
:doc: EXAMPLE