From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Date: Mon, 28 Oct 2019 16:40:28 -0700 Subject: [PATCH] clk: ast2600: Fix enabling of clocks In-Reply-To: <20191016131319.31318-1-joel@jms.id.au> References: <20191016131319.31318-1-joel@jms.id.au> Message-ID: <20191028234029.07821214E0@mail.kernel.org> List-Id: To: linux-aspeed@lists.ozlabs.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Quoting Joel Stanley (2019-10-16 06:13:19) > The struct clk_ops enable callback for the aspeed gates mixes up the set > to clear and write to set registers. > > Fixes: d3d04f6c330a ("clk: Add support for AST2600 SoC") > Reviewed-by: Andrew Jeffery > Signed-off-by: Joel Stanley > --- Applied to clk-fixes From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5CF68CA9EC0 for ; Mon, 28 Oct 2019 23:40:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2AC49217D6 for ; Mon, 28 Oct 2019 23:40:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572306030; bh=ObPc5KxyfF36jBQrMbOO/RrJdWvyO4TVaIiA0XQNzyc=; h=In-Reply-To:References:From:Subject:To:Cc:Date:List-ID:From; b=nQuXhiffC0Rk8Y17xY7JxL8QNMd+XZEPKCAmCyvO2ejT9pWX/yQt0v0IdWJbX637n ERmWE/UEUoQvrT1tj0Ie7uYKq7IYkSbX6bVUU6GGf84nFbYNgD5F7qxK6KetjAHbab lSH0/uymuOm7zruDYBoQrTuJRAQBU36D27ceNirc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725971AbfJ1Xk3 (ORCPT ); Mon, 28 Oct 2019 19:40:29 -0400 Received: from mail.kernel.org ([198.145.29.99]:43600 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725845AbfJ1Xk3 (ORCPT ); Mon, 28 Oct 2019 19:40:29 -0400 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 07821214E0; Mon, 28 Oct 2019 23:40:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572306029; bh=ObPc5KxyfF36jBQrMbOO/RrJdWvyO4TVaIiA0XQNzyc=; h=In-Reply-To:References:From:Subject:To:Cc:Date:From; b=YkJki0OHTQCbmQe2ENpLJpntLyj1ThZeESVUxufVFkBQjK5yzJQzYbGsIy6S/qxc+ swSCGeziuE9AE7bCWtLOBnQ+YmCmc/5+xJOaS5H1fiSeMew4Jc+2tSTNvi51g+i+EV jfB3Pw6I/c9kR4RM9bEr+uTp6ZZi5E42U7S/kOjU= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20191016131319.31318-1-joel@jms.id.au> References: <20191016131319.31318-1-joel@jms.id.au> From: Stephen Boyd Subject: Re: [PATCH] clk: ast2600: Fix enabling of clocks To: Joel Stanley , Michael Turquette , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Cc: linux-aspeed@lists.ozlabs.org, Andrew Jeffery User-Agent: alot/0.8.1 Date: Mon, 28 Oct 2019 16:40:28 -0700 Message-Id: <20191028234029.07821214E0@mail.kernel.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Joel Stanley (2019-10-16 06:13:19) > The struct clk_ops enable callback for the aspeed gates mixes up the set > to clear and write to set registers. >=20 > Fixes: d3d04f6c330a ("clk: Add support for AST2600 SoC") > Reviewed-by: Andrew Jeffery > Signed-off-by: Joel Stanley > --- Applied to clk-fixes