1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _KUNIT_PLATFORM_DRIVER_H
3 #define _KUNIT_PLATFORM_DRIVER_H
6 struct platform_device;
7 struct platform_driver;
9 struct platform_device *
10 kunit_platform_device_alloc(struct kunit *test, const char *name, int id);
11 int kunit_platform_device_add(struct kunit *test, struct platform_device *pdev);
13 int kunit_platform_device_prepare_wait_for_probe(struct kunit *test,
14 struct platform_device *pdev,
15 struct completion *x);
17 int kunit_platform_driver_register(struct kunit *test,
18 struct platform_driver *drv);