All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/uv_uapi: depend on CONFIG_S390
@ 2022-05-23 19:24 Paolo Bonzini
  2022-05-23 20:08 ` Randy Dunlap
  2022-05-24  7:01 ` Christian Borntraeger
  0 siblings, 2 replies; 4+ messages in thread
From: Paolo Bonzini @ 2022-05-23 19:24 UTC (permalink / raw)
  To: linux-kernel, kvm; +Cc: Christian Borntraeger, linux-s390

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 drivers/s390/char/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/s390/char/Kconfig b/drivers/s390/char/Kconfig
index ef8f41833c1a..108e8eb06249 100644
--- a/drivers/s390/char/Kconfig
+++ b/drivers/s390/char/Kconfig
@@ -103,6 +103,7 @@ config SCLP_OFB
 config S390_UV_UAPI
 	def_tristate m
 	prompt "Ultravisor userspace API"
+        depends on S390
 	help
 	  Selecting exposes parts of the UV interface to userspace
 	  by providing a misc character device at /dev/uv.
-- 
2.31.1


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

* Re: [PATCH] s390/uv_uapi: depend on CONFIG_S390
  2022-05-23 19:24 [PATCH] s390/uv_uapi: depend on CONFIG_S390 Paolo Bonzini
@ 2022-05-23 20:08 ` Randy Dunlap
  2022-05-24  7:01 ` Christian Borntraeger
  1 sibling, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2022-05-23 20:08 UTC (permalink / raw)
  To: Paolo Bonzini, linux-kernel, kvm; +Cc: Christian Borntraeger, linux-s390



On 5/23/22 12:24, Paolo Bonzini wrote:
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  drivers/s390/char/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/s390/char/Kconfig b/drivers/s390/char/Kconfig
> index ef8f41833c1a..108e8eb06249 100644
> --- a/drivers/s390/char/Kconfig
> +++ b/drivers/s390/char/Kconfig
> @@ -103,6 +103,7 @@ config SCLP_OFB
>  config S390_UV_UAPI
>  	def_tristate m
>  	prompt "Ultravisor userspace API"
> +        depends on S390

Please use a tab for indentation instead of spaces.

>  	help
>  	  Selecting exposes parts of the UV interface to userspace
>  	  by providing a misc character device at /dev/uv.

-- 
~Randy

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

* Re: [PATCH] s390/uv_uapi: depend on CONFIG_S390
  2022-05-23 19:24 [PATCH] s390/uv_uapi: depend on CONFIG_S390 Paolo Bonzini
  2022-05-23 20:08 ` Randy Dunlap
@ 2022-05-24  7:01 ` Christian Borntraeger
  2022-05-24  9:42   ` Paolo Bonzini
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Borntraeger @ 2022-05-24  7:01 UTC (permalink / raw)
  To: Paolo Bonzini, linux-kernel, kvm; +Cc: linux-s390

Am 23.05.22 um 21:24 schrieb Paolo Bonzini:
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   drivers/s390/char/Kconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/s390/char/Kconfig b/drivers/s390/char/Kconfig
> index ef8f41833c1a..108e8eb06249 100644
> --- a/drivers/s390/char/Kconfig
> +++ b/drivers/s390/char/Kconfig
> @@ -103,6 +103,7 @@ config SCLP_OFB
>   config S390_UV_UAPI
>   	def_tristate m
>   	prompt "Ultravisor userspace API"
> +        depends on S390
>   	help
>   	  Selecting exposes parts of the UV interface to userspace
>   	  by providing a misc character device at /dev/uv.

Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>

with the whitespace as outlined.

Can you pick it yourself?

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

* Re: [PATCH] s390/uv_uapi: depend on CONFIG_S390
  2022-05-24  7:01 ` Christian Borntraeger
@ 2022-05-24  9:42   ` Paolo Bonzini
  0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2022-05-24  9:42 UTC (permalink / raw)
  To: Christian Borntraeger, linux-kernel, kvm; +Cc: linux-s390

On 5/24/22 09:01, Christian Borntraeger wrote:
> Am 23.05.22 um 21:24 schrieb Paolo Bonzini:
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>   drivers/s390/char/Kconfig | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/s390/char/Kconfig b/drivers/s390/char/Kconfig
>> index ef8f41833c1a..108e8eb06249 100644
>> --- a/drivers/s390/char/Kconfig
>> +++ b/drivers/s390/char/Kconfig
>> @@ -103,6 +103,7 @@ config SCLP_OFB
>>   config S390_UV_UAPI
>>       def_tristate m
>>       prompt "Ultravisor userspace API"
>> +        depends on S390
>>       help
>>         Selecting exposes parts of the UV interface to userspace
>>         by providing a misc character device at /dev/uv.
> 
> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
> 
> with the whitespace as outlined.

Yes, that needs to be a tab.

> Can you pick it yourself?

Sure, thanks.

Paolo


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

end of thread, other threads:[~2022-05-24  9:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-23 19:24 [PATCH] s390/uv_uapi: depend on CONFIG_S390 Paolo Bonzini
2022-05-23 20:08 ` Randy Dunlap
2022-05-24  7:01 ` Christian Borntraeger
2022-05-24  9:42   ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.