From patchwork Fri Feb 15 11:56:49 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rosy Song X-Patchwork-Id: 1042798 X-Patchwork-Delegate: daniel.schwierzeck@googlemail.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=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rosinson.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 441Bcz0Q34z9s7h for ; Fri, 15 Feb 2019 22:59:14 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 64270C21F1F; Fri, 15 Feb 2019 11:58:38 +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=UNPARSEABLE_RELAY 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 38582C21F84; Fri, 15 Feb 2019 11:57:32 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8914DC2201B; Fri, 15 Feb 2019 11:57:30 +0000 (UTC) Received: from out20-63.mail.aliyun.com (out20-63.mail.aliyun.com [115.124.20.63]) by lists.denx.de (Postfix) with ESMTPS id C3A65C21FAB for ; Fri, 15 Feb 2019 11:57:07 +0000 (UTC) X-Alimail-AntiSpam: AC=CONTINUE; BC=0.327114|-1; CH=green; FP=0|0|0|0|0|-1|-1|-1; HT=e01l07426; MF=rosysong@rosinson.com; NM=1; PH=DS; RN=3; RT=3; SR=0; TI=SMTPD_---.DyuPiwo_1550231810; Received: from banglang-PC.lan(mailfrom:rosysong@rosinson.com fp:SMTPD_---.DyuPiwo_1550231810) by smtp.aliyun-inc.com(10.147.41.137); Fri, 15 Feb 2019 19:56:51 +0800 From: Rosy Song To: u-boot@lists.denx.de Date: Fri, 15 Feb 2019 19:56:49 +0800 Message-Id: <20190215115649.2553-1-rosysong@rosinson.com> X-Mailer: git-send-email 2.17.0 Subject: [U-Boot] [PATCH 3/3] mips: fix erros on registers macros of pll-ddr-config1-nfrac for QCA956X 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" Signed-off-by: Rosy Song --- arch/mips/mach-ath79/include/mach/ar71xx_regs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/mips/mach-ath79/include/mach/ar71xx_regs.h b/arch/mips/mach-ath79/include/mach/ar71xx_regs.h index 380f387a26..016679e0f8 100644 --- a/arch/mips/mach-ath79/include/mach/ar71xx_regs.h +++ b/arch/mips/mach-ath79/include/mach/ar71xx_regs.h @@ -551,7 +551,7 @@ #define QCA956X_PLL_CPU_CONFIG1_NFRAC_L_SHIFT 0 #define QCA956X_PLL_CPU_CONFIG1_NFRAC_L_MASK 0x1f #define QCA956X_PLL_CPU_CONFIG1_NFRAC_H_SHIFT 5 -#define QCA956X_PLL_CPU_CONFIG1_NFRAC_H_MASK 0x3fff +#define QCA956X_PLL_CPU_CONFIG1_NFRAC_H_MASK 0x1fff #define QCA956X_PLL_CPU_CONFIG1_NINT_SHIFT 18 #define QCA956X_PLL_CPU_CONFIG1_NINT_MASK 0x1ff @@ -563,7 +563,7 @@ #define QCA956X_PLL_DDR_CONFIG1_NFRAC_L_SHIFT 0 #define QCA956X_PLL_DDR_CONFIG1_NFRAC_L_MASK 0x1f #define QCA956X_PLL_DDR_CONFIG1_NFRAC_H_SHIFT 5 -#define QCA956X_PLL_DDR_CONFIG1_NFRAC_H_MASK 0x3fff +#define QCA956X_PLL_DDR_CONFIG1_NFRAC_H_MASK 0x1fff #define QCA956X_PLL_DDR_CONFIG1_NINT_SHIFT 18 #define QCA956X_PLL_DDR_CONFIG1_NINT_MASK 0x1ff