From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 47D41135A40; Wed, 24 Jan 2024 22:07:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706134039; cv=none; b=Gpf0C1EaQn69iL/LcrM8eDASphn3+9m6yQuz4Lf94RB0sr4oYM5sggac7djX7XP0bGqtyF0wl2FoqCNlRhlpSRafb0srTO7bhHpq4bazlM8EErBm8LWTheQbLraITk+tEAMuXS7CvqiG2eV6tydt5jcvKYCWLIPwR3S9mXfqyvY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706134039; c=relaxed/simple; bh=hnBTLdmXWaZcqPHY+gzD4i/37L5SLPfwrdKsBL0cpEU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=U8OC+TC9VESe2MkHW4wNx9+6JsMwgKX5LAJ3LALHgov4LQUp2kKeaqnbt5rBn9ccjqH4MQLzKMwy0z6VCNSU9h3nrt71EAEjVeoVJCRvWTBuolJTCPA2Y0hiP3zKSF3tx/flUd+Zp0r3x9R8AZn7CtsY7jP+xBh0iLsKfBMuvHk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oOoHLexc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="oOoHLexc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8C878C433C7; Wed, 24 Jan 2024 22:07:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1706134038; bh=hnBTLdmXWaZcqPHY+gzD4i/37L5SLPfwrdKsBL0cpEU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oOoHLexcsJBgDEp/saL5fzCCdq86j+YUMysg/UNA+Ky/q5IVGjrRrK7kvjA6IIOmN UEV2Wf5KXd4MML2fnI5w8v0jtqa7tNhTjP1RSJd8edBUhAxlWma2zhfsPlqhwbqVa3 GRbyiF+eTAowjZwVSCtFM+P7zOMnCSFeVZYhKQBPUB936AX1hI7zxmEySqVItwAvJm C++TEA624nt6jdf4pM5S+2flo3X1uv/n7/7qV8Tw8Y8miF4gU74PGZ72T/mxvbgzGt +1/E5IF3Y0fvO50Y+vAELxX8+1govwRkwydB21finM+v6D/tItKxqabiQYRZPE1DNE bpCcQg03AaKOw== Date: Wed, 24 Jan 2024 16:07:16 -0600 From: Rob Herring To: Krzysztof Kozlowski Cc: Srinivas Kandagatla , Banajit Goswami , Bjorn Andersson , Konrad Dybcio , Liam Girdwood , Mark Brown , Krzysztof Kozlowski , Conor Dooley , Philipp Zabel , "Rafael J. Wysocki" , Viresh Kumar , Frank Rowand , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linux-arm-msm@vger.kernel.org, linux-sound@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: Re: [PATCH v5 1/6] of: Add of_phandle_args_equal() helper Message-ID: <20240124220716.GA2454626-robh@kernel.org> References: <20240124074527.48869-1-krzysztof.kozlowski@linaro.org> <20240124074527.48869-2-krzysztof.kozlowski@linaro.org> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240124074527.48869-2-krzysztof.kozlowski@linaro.org> On Wed, Jan 24, 2024 at 08:45:22AM +0100, Krzysztof Kozlowski wrote: > Add a helper comparing two "struct of_phandle_args" to avoid > reinventing the wheel. > > Reviewed-by: Philipp Zabel > Signed-off-by: Krzysztof Kozlowski > --- > > Dependency of cpufreq and reset change. > --- > include/linux/of.h | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) Acked-by: Rob Herring I've wanted to write this series for some time. Great work. Rob