xref: /linux-6.15/lib/kunit/device-impl.h (revision 829388b7)
1d03c720eS[email protected] /* SPDX-License-Identifier: GPL-2.0 */
2d03c720eS[email protected] /*
3d03c720eS[email protected]  * KUnit internal header for device helpers
4d03c720eS[email protected]  *
5d03c720eS[email protected]  * Header for KUnit-internal driver / bus management.
6d03c720eS[email protected]  *
7d03c720eS[email protected]  * Copyright (C) 2023, Google LLC.
8d03c720eS[email protected]  * Author: David Gow <[email protected]>
9d03c720eS[email protected]  */
10d03c720eS[email protected] 
11d03c720eS[email protected] #ifndef _KUNIT_DEVICE_IMPL_H
12d03c720eS[email protected] #define _KUNIT_DEVICE_IMPL_H
13d03c720eS[email protected] 
14d03c720eS[email protected] // For internal use only -- registers the kunit_bus.
15d03c720eS[email protected] int kunit_bus_init(void);
16*829388b7SDavid Gow // For internal use only -- unregisters the kunit_bus.
17*829388b7SDavid Gow void kunit_bus_shutdown(void);
18d03c720eS[email protected] 
19d03c720eS[email protected] #endif //_KUNIT_DEVICE_IMPL_H
20