From nobody Tue Apr 23 17:46:22 2024 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8A244C433EF for ; Mon, 23 May 2022 19:37:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231336AbiEWThW (ORCPT ); Mon, 23 May 2022 15:37:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55828 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230360AbiEWTg4 (ORCPT ); Mon, 23 May 2022 15:36:56 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 336377354A for ; Mon, 23 May 2022 12:24:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1653333864; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=InjuNukk5AWJl2Wwz5sSwlsD5KfOc4voU8ewp772j2k=; b=Y/G2/KveBcyv81azWsgNBkG6Lf5HCEQVNNRBfVummtp4W1jm2PNvOUO9o19C6PDiAkgvtH sR9pf/qyG9y7lbxvhczIjtE5XyE3/tlDJNyz2gBGE4mxL3PyLRUklV+q47EaJ/+2NcN1He oQt6c6qG5nKQTytKL85OJ3DPECFJBNI= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-216-vlreVST7O8GEWgS7BFZBbw-1; Mon, 23 May 2022 15:24:20 -0400 X-MC-Unique: vlreVST7O8GEWgS7BFZBbw-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6C37F811E78; Mon, 23 May 2022 19:24:20 +0000 (UTC) Received: from virtlab701.virt.lab.eng.bos.redhat.com (virtlab701.virt.lab.eng.bos.redhat.com [10.19.152.228]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4634D492C3B; Mon, 23 May 2022 19:24:20 +0000 (UTC) From: Paolo Bonzini To: linux-kernel@vger.kernel.org, kvm@vger.kernel.org Cc: Christian Borntraeger , linux-s390@vger.kernel.org Subject: [PATCH] s390/uv_uapi: depend on CONFIG_S390 Date: Mon, 23 May 2022 15:24:20 -0400 Message-Id: <20220523192420.151184-1-pbonzini@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Signed-off-by: Paolo Bonzini Acked-by: Christian Borntraeger --- 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. --=20 2.31.1