mirror of
				https://github.com/Ysurac/openmptcprouter.git
				synced 2025-03-09 15:40:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 46692ae003f6dd0a8f1dd72c2c00972505e80d5d 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_
 |