mirror of
				https://github.com/Ysurac/openmptcprouter.git
				synced 2025-03-09 15:40:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 79c6b702ade1904f7c8c7614fcfb875c48c8055b Mon Sep 17 00:00:00 2001
 | |
| From: Maxime Ripard <maxime@cerno.tech>
 | |
| Date: Wed, 16 Nov 2022 10:17:11 +0100
 | |
| Subject: [PATCH] drm/tests: helpers: Add module infos
 | |
| MIME-Version: 1.0
 | |
| Content-Type: text/plain; charset=UTF-8
 | |
| Content-Transfer-Encoding: 8bit
 | |
| 
 | |
| The MODULE_LICENSE macro is missing from the kunit helpers file, thus
 | |
| leading to a build error.
 | |
| 
 | |
| Let's introduce it along with MODULE_AUTHOR.
 | |
| 
 | |
| Fixes: 44a3928324e9 ("drm/tests: Add Kunit Helpers")
 | |
| Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
 | |
| Reviewed-by: Maíra Canal <mairacanal@riseup.net>
 | |
| Link: https://lore.kernel.org/r/20221116091712.1309651-2-maxime@cerno.tech
 | |
| Signed-off-by: Maxime Ripard <maxime@cerno.tech>
 | |
| ---
 | |
|  drivers/gpu/drm/tests/drm_kunit_helpers.c | 3 +++
 | |
|  1 file changed, 3 insertions(+)
 | |
| 
 | |
| --- a/drivers/gpu/drm/tests/drm_kunit_helpers.c
 | |
| +++ b/drivers/gpu/drm/tests/drm_kunit_helpers.c
 | |
| @@ -64,3 +64,6 @@ struct drm_device *drm_kunit_device_init
 | |
|  
 | |
|  	return drm;
 | |
|  }
 | |
| +
 | |
| +MODULE_AUTHOR("Maxime Ripard <maxime@cerno.tech>");
 | |
| +MODULE_LICENSE("GPL");
 |