mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
The name doesn't really fit the conventions for the other helpers in DRM/KMS, so let's rename it to make it obvious that we allocate a new DRM device. Reviewed-by: Maíra Canal <mcanal@igalia.com> Link: https://lore.kernel.org/r/20221123-rpi-kunit-tests-v3-5-4615a663a84a@cerno.tech Signed-off-by: Maxime Ripard <maxime@cerno.tech>
15 lines
275 B
C
15 lines
275 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef DRM_KUNIT_HELPERS_H_
|
|
#define DRM_KUNIT_HELPERS_H_
|
|
|
|
struct drm_device;
|
|
struct kunit;
|
|
|
|
struct drm_device *
|
|
drm_kunit_helper_alloc_drm_device(struct kunit *test,
|
|
u32 features,
|
|
char *name);
|
|
|
|
#endif // DRM_KUNIT_HELPERS_H_
|