From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:42415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h38H0-0004Uc-4A for qemu-devel@nongnu.org; Sun, 10 Mar 2019 19:54:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h38Gz-0002GC-EC for qemu-devel@nongnu.org; Sun, 10 Mar 2019 19:54:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49030) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h38Gz-0002Fu-7n for qemu-devel@nongnu.org; Sun, 10 Mar 2019 19:54:29 -0400 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 11 Mar 2019 00:53:45 +0100 Message-Id: <20190310235351.1863-3-philmd@redhat.com> In-Reply-To: <20190310235351.1863-1-philmd@redhat.com> References: <20190310235351.1863-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 2/8] hw/input: Add 8042 PS/2 Keyboard Controller to Kconfig List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S . Tsirkin" , Thomas Huth , Paolo Bonzini , Igor Mammedov , qemu-devel@nongnu.org, =?UTF-8?q?Herv=C3=A9=20Poussineau?= Cc: Eduardo Habkost , Aleksandar Markovic , Aleksandar Rikalo , Aurelien Jarno , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= The Intel 8042 chipset also includes some functions unrelated to the keyboard, such the A20-Gate. Signed-off-by: Philippe Mathieu-Daud=C3=A9 --- hw/input/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/input/Kconfig b/hw/input/Kconfig index e2e66f0858..83e4546a28 100644 --- a/hw/input/Kconfig +++ b/hw/input/Kconfig @@ -10,6 +10,10 @@ config PCKBD default y depends on ISA_BUS =20 +config I8042 + bool + select PCKBD + config PL050 bool =20 --=20 2.20.1