]> Git Repo - J-linux.git/blob - include/kunit/platform_device.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / include / kunit / platform_device.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _KUNIT_PLATFORM_DRIVER_H
3 #define _KUNIT_PLATFORM_DRIVER_H
4
5 struct kunit;
6 struct platform_device;
7 struct platform_driver;
8
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);
12
13 int kunit_platform_device_prepare_wait_for_probe(struct kunit *test,
14                                                  struct platform_device *pdev,
15                                                  struct completion *x);
16
17 int kunit_platform_driver_register(struct kunit *test,
18                                    struct platform_driver *drv);
19
20 #endif
This page took 0.026389 seconds and 4 git commands to generate.