linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/3] video: fbdev: mmp: add COMPILE_TEST support
       [not found] <CGME20190627140744eucas1p1eb91c6c21ae36105f38dbf5e42259a7c@eucas1p1.samsung.com>
@ 2019-06-27 14:07 ` Bartlomiej Zolnierkiewicz
  2019-08-20  9:56   ` Andrzej Hajda
  0 siblings, 1 reply; 3+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2019-06-27 14:07 UTC (permalink / raw)
  To: linux-fbdev, dri-devel, linux-kernel

Add COMPILE_TEST support to mmp display subsystem for better compile
testing coverage.

Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
---
 drivers/video/fbdev/mmp/Kconfig    |    2 +-
 drivers/video/fbdev/mmp/hw/Kconfig |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

Index: b/drivers/video/fbdev/mmp/Kconfig
===================================================================
--- a/drivers/video/fbdev/mmp/Kconfig
+++ b/drivers/video/fbdev/mmp/Kconfig
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
 menuconfig MMP_DISP
 	tristate "Marvell MMP Display Subsystem support"
-	depends on CPU_PXA910 || CPU_MMP2
+	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
 	help
 	  Marvell Display Subsystem support.
 
Index: b/drivers/video/fbdev/mmp/hw/Kconfig
===================================================================
--- a/drivers/video/fbdev/mmp/hw/Kconfig
+++ b/drivers/video/fbdev/mmp/hw/Kconfig
@@ -1,7 +1,8 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config MMP_DISP_CONTROLLER
 	bool "mmp display controller hw support"
-	depends on CPU_PXA910 || CPU_MMP2
+	depends on HAVE_CLK && HAS_IOMEM
+	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
 	help
 		Marvell MMP display hw controller support
 		this controller is used on Marvell PXA910 and

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 2/3] video: fbdev: mmp: add COMPILE_TEST support
  2019-06-27 14:07 ` [PATCH 2/3] video: fbdev: mmp: add COMPILE_TEST support Bartlomiej Zolnierkiewicz
@ 2019-08-20  9:56   ` Andrzej Hajda
  2020-01-03 11:38     ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 3+ messages in thread
From: Andrzej Hajda @ 2019-08-20  9:56 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz, linux-fbdev, dri-devel, linux-kernel

On 27.06.2019 16:07, Bartlomiej Zolnierkiewicz wrote:
> Add COMPILE_TEST support to mmp display subsystem for better compile
> testing coverage.
>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>


Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

 --
Regards
Andrzej


> ---
>  drivers/video/fbdev/mmp/Kconfig    |    2 +-
>  drivers/video/fbdev/mmp/hw/Kconfig |    3 ++-
>  2 files changed, 3 insertions(+), 2 deletions(-)
>
> Index: b/drivers/video/fbdev/mmp/Kconfig
> ===================================================================
> --- a/drivers/video/fbdev/mmp/Kconfig
> +++ b/drivers/video/fbdev/mmp/Kconfig
> @@ -1,7 +1,7 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  menuconfig MMP_DISP
>  	tristate "Marvell MMP Display Subsystem support"
> -	depends on CPU_PXA910 || CPU_MMP2
> +	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
>  	help
>  	  Marvell Display Subsystem support.
>  
> Index: b/drivers/video/fbdev/mmp/hw/Kconfig
> ===================================================================
> --- a/drivers/video/fbdev/mmp/hw/Kconfig
> +++ b/drivers/video/fbdev/mmp/hw/Kconfig
> @@ -1,7 +1,8 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  config MMP_DISP_CONTROLLER
>  	bool "mmp display controller hw support"
> -	depends on CPU_PXA910 || CPU_MMP2
> +	depends on HAVE_CLK && HAS_IOMEM
> +	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
>  	help
>  		Marvell MMP display hw controller support
>  		this controller is used on Marvell PXA910 and
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 2/3] video: fbdev: mmp: add COMPILE_TEST support
  2019-08-20  9:56   ` Andrzej Hajda
@ 2020-01-03 11:38     ` Bartlomiej Zolnierkiewicz
  0 siblings, 0 replies; 3+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2020-01-03 11:38 UTC (permalink / raw)
  To: Andrzej Hajda; +Cc: linux-fbdev, dri-devel, linux-kernel


On 8/20/19 11:56 AM, Andrzej Hajda wrote:
> On 27.06.2019 16:07, Bartlomiej Zolnierkiewicz wrote:
>> Add COMPILE_TEST support to mmp display subsystem for better compile
>> testing coverage.
>>
>> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> 
> 
> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

Thanks, I've queued the patch for v5.6.

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics

>  --
> Regards
> Andrzej
> 
> 
>> ---
>>  drivers/video/fbdev/mmp/Kconfig    |    2 +-
>>  drivers/video/fbdev/mmp/hw/Kconfig |    3 ++-
>>  2 files changed, 3 insertions(+), 2 deletions(-)
>>
>> Index: b/drivers/video/fbdev/mmp/Kconfig
>> ===================================================================
>> --- a/drivers/video/fbdev/mmp/Kconfig
>> +++ b/drivers/video/fbdev/mmp/Kconfig
>> @@ -1,7 +1,7 @@
>>  # SPDX-License-Identifier: GPL-2.0-only
>>  menuconfig MMP_DISP
>>  	tristate "Marvell MMP Display Subsystem support"
>> -	depends on CPU_PXA910 || CPU_MMP2
>> +	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
>>  	help
>>  	  Marvell Display Subsystem support.
>>  
>> Index: b/drivers/video/fbdev/mmp/hw/Kconfig
>> ===================================================================
>> --- a/drivers/video/fbdev/mmp/hw/Kconfig
>> +++ b/drivers/video/fbdev/mmp/hw/Kconfig
>> @@ -1,7 +1,8 @@
>>  # SPDX-License-Identifier: GPL-2.0-only
>>  config MMP_DISP_CONTROLLER
>>  	bool "mmp display controller hw support"
>> -	depends on CPU_PXA910 || CPU_MMP2
>> +	depends on HAVE_CLK && HAS_IOMEM
>> +	depends on CPU_PXA910 || CPU_MMP2 || COMPILE_TEST
>>  	help
>>  		Marvell MMP display hw controller support
>>  		this controller is used on Marvell PXA910 and
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-03 11:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20190627140744eucas1p1eb91c6c21ae36105f38dbf5e42259a7c@eucas1p1.samsung.com>
2019-06-27 14:07 ` [PATCH 2/3] video: fbdev: mmp: add COMPILE_TEST support Bartlomiej Zolnierkiewicz
2019-08-20  9:56   ` Andrzej Hajda
2020-01-03 11:38     ` Bartlomiej Zolnierkiewicz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).