From patchwork Fri Mar 3 06:19:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenyou Yang X-Patchwork-Id: 734953 X-Patchwork-Delegate: andreas.biessmann@googlemail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3vZK4Y6xGwz9s73 for ; Fri, 3 Mar 2017 17:28:13 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id B01B0C21D63; Fri, 3 Mar 2017 06:27:24 +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=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 A8686C21D71; Fri, 3 Mar 2017 06:27:20 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B2CB5C21D74; Fri, 3 Mar 2017 06:26:57 +0000 (UTC) Received: from ussmtp01.atmel.com (nasmtp01.atmel.com [192.199.1.245]) by lists.denx.de (Postfix) with ESMTPS id DDA95C21D8E for ; Fri, 3 Mar 2017 06:26:56 +0000 (UTC) Received: from apsmtp01.atmel.com (10.168.254.30) by DVREDG01.corp.atmel.com (10.42.103.30) with Microsoft SMTP Server (TLS) id 14.3.235.1; Thu, 2 Mar 2017 23:26:47 -0700 Received: from shaarm01.corp.atmel.com (10.168.254.13) by apsmtp01.corp.atmel.com (10.168.254.30) with Microsoft SMTP Server id 14.3.235.1; Fri, 3 Mar 2017 14:30:03 +0800 From: Wenyou Yang To: U-Boot Mailing List Date: Fri, 3 Mar 2017 14:19:37 +0800 Message-ID: <20170303061937.3138-3-wenyou.yang@atmel.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170303061937.3138-1-wenyou.yang@atmel.com> References: <20170303061937.3138-1-wenyou.yang@atmel.com> MIME-Version: 1.0 Subject: [U-Boot] [PATCH v2 2/2] clk: at91: align clk-master's compatibles with kernel's 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" Add the compatible "atmel,at91rm9200-clk-master" to align with the kernel's. Signed-off-by: Wenyou Yang Reviewed-by: Simon Glass --- Changes in v2: - Add the Reviewed-by tags. drivers/clk/at91/clk-master.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/at91/clk-master.c b/drivers/clk/at91/clk-master.c index 284b248271..72d0a739f1 100644 --- a/drivers/clk/at91/clk-master.c +++ b/drivers/clk/at91/clk-master.c @@ -21,6 +21,7 @@ static struct clk_ops at91_master_clk_ops = { }; static const struct udevice_id at91_master_clk_match[] = { + { .compatible = "atmel,at91rm9200-clk-master" }, { .compatible = "atmel,at91sam9x5-clk-master" }, {} };