mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
793f8ab62c
Add kernel patches for version 6.1. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
64 lines
2.1 KiB
Diff
64 lines
2.1 KiB
Diff
From 781ffca07b71a83a6d81e1782659f8a43d7ea401 Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Mon, 21 Nov 2022 13:22:59 +0100
|
|
Subject: [PATCH] drm/tests: helpers: Rename the device init helper
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
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>
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/tests/drm_kunit_helpers.c | 8 +++++---
|
|
include/drm/drm_kunit_helpers.h | 5 ++++-
|
|
2 files changed, 9 insertions(+), 4 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/tests/drm_kunit_helpers.c
|
|
+++ b/drivers/gpu/drm/tests/drm_kunit_helpers.c
|
|
@@ -36,7 +36,7 @@ static void dev_free(struct kunit_resour
|
|
}
|
|
|
|
/**
|
|
- * drm_kunit_device_init - Allocates a mock DRM device for KUnit tests
|
|
+ * drm_kunit_helper_alloc_drm_device - Allocates a mock DRM device for KUnit tests
|
|
* @test: The test context object
|
|
* @features: Mocked DRM device driver features
|
|
* @name: Name of the struct &device to allocate
|
|
@@ -52,7 +52,9 @@ static void dev_free(struct kunit_resour
|
|
* Returns:
|
|
* A pointer to the new drm_device, or an ERR_PTR() otherwise.
|
|
*/
|
|
-struct drm_device *drm_kunit_device_init(struct kunit *test, u32 features, char *name)
|
|
+struct drm_device *
|
|
+drm_kunit_helper_alloc_drm_device(struct kunit *test,
|
|
+ u32 features, char *name)
|
|
{
|
|
struct kunit_dev *kdev;
|
|
struct drm_device *drm;
|
|
@@ -82,7 +84,7 @@ struct drm_device *drm_kunit_device_init
|
|
|
|
return drm;
|
|
}
|
|
-EXPORT_SYMBOL_GPL(drm_kunit_device_init);
|
|
+EXPORT_SYMBOL_GPL(drm_kunit_helper_alloc_drm_device);
|
|
|
|
MODULE_AUTHOR("Maxime Ripard <maxime@cerno.tech>");
|
|
MODULE_LICENSE("GPL");
|
|
--- a/include/drm/drm_kunit_helpers.h
|
|
+++ b/include/drm/drm_kunit_helpers.h
|
|
@@ -6,6 +6,9 @@
|
|
struct drm_device;
|
|
struct kunit;
|
|
|
|
-struct drm_device *drm_kunit_device_init(struct kunit *test, u32 features, char *name);
|
|
+struct drm_device *
|
|
+drm_kunit_helper_alloc_drm_device(struct kunit *test,
|
|
+ u32 features,
|
|
+ char *name);
|
|
|
|
#endif // DRM_KUNIT_HELPERS_H_
|