From patchwork Tue Jul 25 12:47:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leo Wen X-Patchwork-Id: 793362 X-Patchwork-Delegate: philipp.tomsich@theobroma-systems.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3xGyjY5Pjkz9s7M for ; Tue, 25 Jul 2017 22:49:05 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 7619CC21EFE; Tue, 25 Jul 2017 12:48:52 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 6EADFC21F11; Tue, 25 Jul 2017 12:48:50 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8AAF8C21EFE; Tue, 25 Jul 2017 12:48:34 +0000 (UTC) Received: from regular1.263xmail.com (regular1.263xmail.com [211.150.99.132]) by lists.denx.de (Postfix) with ESMTPS id ED991C21EE8 for ; Tue, 25 Jul 2017 12:48:30 +0000 (UTC) Received: from leo.wen?rock-chips.com (unknown [192.168.165.105]) by regular1.263xmail.com (Postfix) with ESMTP id 0A993925A; Tue, 25 Jul 2017 20:48:25 +0800 (CST) X-263anti-spam: KSV:0; X-MAIL-GRAY: 0 X-MAIL-DELIVERY: 1 X-KSVirus-check: 0 X-ABS-CHECKED: 4 Received: from smtp.263.net (va-smtp01.263.net [54.88.144.211]) by smtp.263.net (Postfix) with ESMTP id E1CD8308; Tue, 25 Jul 2017 20:48:24 +0800 (CST) Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.263.net (Postfix) with ESMTP id AC8CB9F647; Tue, 25 Jul 2017 20:48:07 +0800 (CST) X-RL-SENDER: leo.wen@rock-chips.com X-FST-TO: sjg@chromium.org X-SENDER-IP: 103.29.142.67 X-LOGIN-NAME: leo.wen@rock-chips.com X-UNIQUE-TAG: X-ATTACHMENT-NUM: 0 X-SENDER: leo.wen@rock-chips.com X-DNS-TYPE: 0 Received: from localhost (unknown [103.29.142.67]) by smtp.263.net (Postfix) whith ESMTP id 13921F6MQVQ; Tue, 25 Jul 2017 20:48:11 +0800 (CST) From: Leo Wen To: sjg@chromium.org, philipp.tomsich@theobroma-systems.com Date: Tue, 25 Jul 2017 20:47:45 +0800 Message-Id: <1500986867-30634-2-git-send-email-leo.wen@rock-chips.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1500986867-30634-1-git-send-email-leo.wen@rock-chips.com> References: <1500986867-30634-1-git-send-email-leo.wen@rock-chips.com> Cc: Leo Wen , u-boot@lists.denx.de, jacob2.chen@rock-chips.com, eddie.cai@rock-chips.com, jagan@openedev.com Subject: [U-Boot] [PATCH v6 1/3] rockchip: firefly: Add some macros to enable the usb keyboard X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Add four macros of CONFIG_USB_KEYBOARD,CONFIG_DM_KEYBOARD,etc in the firefly-rk3288_defconfig,can support usb keyboard device when these four macros are enabled. Signed-off-by: Leo Wen Acked-by: Philipp Tomsich Reviewed-by: Philipp Tomsich --- configs/firefly-rk3288_defconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/firefly-rk3288_defconfig b/configs/firefly-rk3288_defconfig index 6f093f4..5173c3f 100644 --- a/configs/firefly-rk3288_defconfig +++ b/configs/firefly-rk3288_defconfig @@ -75,3 +75,7 @@ CONFIG_CONSOLE_SCROLL_LINES=10 CONFIG_USE_TINY_PRINTF=y CONFIG_CMD_DHRYSTONE=y CONFIG_ERRNO_STR=y +CONFIG_USB_KEYBOARD=y +CONFIG_DM_KEYBOARD=y +CONFIG_SYS_USB_EVENT_POLL=y +CONFIG_SYS_STDIO_DEREGISTER=y