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,URIBL_BLOCKED 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 53DBCC4CEC9 for ; Tue, 17 Sep 2019 17:16:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 21DA520665 for ; Tue, 17 Sep 2019 17:16:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568740569; bh=/8lwFXsgd2McEynp3iAw9yC6Sg4qYrWNvazX5f1jjNo=; h=In-Reply-To:References:Cc:To:From:Subject:Date:List-ID:From; b=hxrTg2C2eKkjrgnmcllIbztmXk53V3qgrbG1w5W7GqBvGnyDxeaK1jKOmHPGZxkdX SHkj6dXMn94bbrbI/saXREAjB/EeOeXZ7ZnJYidmSXkXTZR5LlHujP4V8EQwMQUDrx PdxXiItPB166mwbDo0/yIG1hC9T5cVHsD416/giY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726553AbfIQRQI (ORCPT ); Tue, 17 Sep 2019 13:16:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:32864 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725881AbfIQRQI (ORCPT ); Tue, 17 Sep 2019 13:16:08 -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 518F82053B; Tue, 17 Sep 2019 17:16:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568740568; bh=/8lwFXsgd2McEynp3iAw9yC6Sg4qYrWNvazX5f1jjNo=; h=In-Reply-To:References:Cc:To:From:Subject:Date:From; b=P5Ohj/8AOSGB6J9MdOoX0c4OaGfUFHM30cqHvtS0wRQ6v/TEBthATTfrqP5n5K1t+ antdB2sffHqyqIzWKmwgFN6+aAQh0XTzTlXygtYshyglCqirKOF4q0jRh1Jn8c8rGD puTXrGaby+B3PuJK8PIjWU5NQhSJZ8/Lb7xhppVc= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <1566145424-3186-3-git-send-email-wahrenst@gmx.net> References: <1566145424-3186-1-git-send-email-wahrenst@gmx.net> <1566145424-3186-3-git-send-email-wahrenst@gmx.net> Cc: linux-clk@vger.kernel.org, Stefan Wahren To: Eric Anholt , Florian Fainelli , Mark Rutland , Michael Turquette , Ray Jui , Rob Herring , Scott Branden , Stefan Wahren From: Stephen Boyd Subject: Re: [PATCH 2/4] clk: bcm2835: Introduce SoC specific clock registration User-Agent: alot/0.8.1 Date: Tue, 17 Sep 2019 10:16:07 -0700 Message-Id: <20190917171608.518F82053B@mail.kernel.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Stefan Wahren (2019-08-18 09:23:42) > In order to support SoC specific clocks (e.g. emmc2 for BCM2711), we > extend the description with a SoC support flag. This approach avoids long > and mostly redundant lists of clock IDs. Since PLLH is specific to > BCM2835, we register only rest of the clocks as common to all SoC. >=20 > Suggested-by: Florian Fainelli > Signed-off-by: Stefan Wahren > Reviewed-by: Matthias Brugger > Acked-by: Eric Anholt > Reviewed-by: Eric Anholt > --- Applied to clk-next