From patchwork Wed Nov 15 03:03:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andes X-Patchwork-Id: 838092 X-Patchwork-Delegate: uboot@andestech.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 3yc8wb18Ctz9sDB for ; Wed, 15 Nov 2017 14:28:31 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id C2764C21DAA; Wed, 15 Nov 2017 03:28:08 +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_BLOCKED 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 1EEAEC21C45; Wed, 15 Nov 2017 03:28:06 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 05739C21C4F; Wed, 15 Nov 2017 03:28:03 +0000 (UTC) Received: from ATCSQR.andestech.com (exmail.andestech.com [59.124.169.137]) by lists.denx.de (Postfix) with ESMTPS id BAD5DC21C35 for ; Wed, 15 Nov 2017 03:28:02 +0000 (UTC) Received: from mail.andestech.com (atcpcs16.andestech.com [10.0.1.222]) by ATCSQR.andestech.com with ESMTP id vAF3Gvj0049623; Wed, 15 Nov 2017 11:16:57 +0800 (GMT-8) (envelope-from uboot@andestech.com) Received: from app09.andestech.com (10.0.4.97) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.123.3; Wed, 15 Nov 2017 11:27:37 +0800 From: Andes To: , , , Date: Wed, 15 Nov 2017 11:03:08 +0800 Message-ID: <1510714988-20135-1-git-send-email-uboot@andestech.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-Originating-IP: [10.0.4.97] X-DNSRBL: X-MAIL: ATCSQR.andestech.com vAF3Gvj0049623 Subject: [U-Boot] [PATCH] atcpit100: timer: Remove arch dependency. 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: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Rick Chen ATCPIT100 is often used in AE3XX platform which is based on NDS32 architecture recently. But in the future Andestech will have AE250 platform which is embeded ATCPIT100 timer based on RISCV architecture. Signed-off-by: Rick Chen Reviewed-by: Simon Glass --- drivers/timer/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/timer/Kconfig b/drivers/timer/Kconfig index fcfdf4e..3a1f831 100644 --- a/drivers/timer/Kconfig +++ b/drivers/timer/Kconfig @@ -107,7 +107,7 @@ config AG101P_TIMER config ATCPIT100_TIMER bool "ATCPIT100 timer support" - depends on TIMER && NDS32 + depends on TIMER help Select this to enable a ATCPIT100 timer which will be embeded in AE3XX, AE250 boards.