Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756607AbcKVUpo (ORCPT ); Tue, 22 Nov 2016 15:45:44 -0500 Received: from anholt.net ([50.246.234.109]:35812 "EHLO anholt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752159AbcKVUpm (ORCPT ); Tue, 22 Nov 2016 15:45:42 -0500 From: Eric Anholt To: Florian Fainelli , Michael Turquette , Stephen Boyd Cc: linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Stephen Warren , Lee Jones , bcm-kernel-feedback-list@broadcom.com, linux-clk@vger.kernel.org, Boris Brezillon , Eric Anholt Subject: [PATCH] clk: bcm2835: Fix ->fixed_divider of pllh_aux Date: Tue, 22 Nov 2016 12:45:28 -0800 Message-Id: <20161122204528.18435-1-eric@anholt.net> X-Mailer: git-send-email 2.10.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1049 Lines: 32 From: Boris Brezillon There is no fixed divider on pllh_aux. Signed-off-by: Boris Brezillon Signed-off-by: Eric Anholt Reviewed-by: Eric Anholt --- This was copy and paste failure on my (anholt's) part. The divider of 10 is on PLLH_PIX. No need to worry about backporting, as this channel is only used for the VEC support I'm hoping to land for 4.11. drivers/clk/bcm/clk-bcm2835.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/bcm/clk-bcm2835.c b/drivers/clk/bcm/clk-bcm2835.c index b68bf573dcfb..82568bfe5a72 100644 --- a/drivers/clk/bcm/clk-bcm2835.c +++ b/drivers/clk/bcm/clk-bcm2835.c @@ -1599,7 +1599,7 @@ static const struct bcm2835_clk_desc clk_desc_array[] = { .a2w_reg = A2W_PLLH_AUX, .load_mask = CM_PLLH_LOADAUX, .hold_mask = 0, - .fixed_divider = 10), + .fixed_divider = 1), [BCM2835_PLLH_PIX] = REGISTER_PLL_DIV( .name = "pllh_pix", .source_pll = "pllh", -- 2.10.2