From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752975AbeAQPAl (ORCPT + 1 other); Wed, 17 Jan 2018 10:00:41 -0500 Received: from fllnx209.ext.ti.com ([198.47.19.16]:65340 "EHLO fllnx209.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750908AbeAQPAj (ORCPT ); Wed, 17 Jan 2018 10:00:39 -0500 Subject: Re: [PATCH v5 16/44] clk: davinci: Add platform information for TI DM646x PSC To: David Lechner , , , CC: Michael Turquette , Stephen Boyd , Rob Herring , Mark Rutland , Kevin Hilman , Adam Ford , References: <1515377863-20358-1-git-send-email-david@lechnology.com> <1515377863-20358-17-git-send-email-david@lechnology.com> From: Sekhar Nori Message-ID: <000fc63a-bba5-6fac-450b-5ed0f8a9bfea@ti.com> Date: Wed, 17 Jan 2018 20:29:31 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <1515377863-20358-17-git-send-email-david@lechnology.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Monday 08 January 2018 07:47 AM, David Lechner wrote: > +void __init dm646x_psc_clk_init(void __iomem *psc) > +{ > + struct clk_onecell_data *clk_data; > + > + clk_data = davinci_psc_register_clocks(psc, dm646x_psc_info, 41); > + if (!clk_data) > + return; > + > + clk_register_clkdev(clk_data->clks[0], "arm", NULL); I don't think this "arm" con_id is used any where for non-DA850 SoCs. And same with "dsp" in other files. Probably best to drop these dubious usage ones rather than carry them forward. Thanks, Sekhar