From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751243AbbIKENR (ORCPT ); Fri, 11 Sep 2015 00:13:17 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:34197 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750876AbbIKENP (ORCPT ); Fri, 11 Sep 2015 00:13:15 -0400 Date: Fri, 11 Sep 2015 09:43:11 +0530 From: Viresh Kumar To: Bai Ping Cc: rjw@rjwysocki.net, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] cpufreq: imx: update the clock swith flow to support imx6ul Message-ID: <20150911041311.GA5779@linux> References: <1441970635-14297-1-git-send-email-b51503@freescale.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1441970635-14297-1-git-send-email-b51503@freescale.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11-09-15, 19:23, Bai Ping wrote: > @@ -331,6 +365,10 @@ put_clk: > clk_put(step_clk); > if (!IS_ERR(pll2_pfd2_396m_clk)) > clk_put(pll2_pfd2_396m_clk); > + if (!IS_ERR(pll2_bus_clk)) > + clk_put(pll2_bus_clk); > + if (!IS_ERR(secondary_sel_clk)) > + clk_put(secondary_sel_clk); > of_node_put(np); > return ret; > } You missed performing same steps in imx6q_cpufreq_remove() ? -- viresh