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=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 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 A4317C43331 for ; Sat, 7 Sep 2019 17:08:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 876D821A4C for ; Sat, 7 Sep 2019 17:08:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2436494AbfIGRIo (ORCPT ); Sat, 7 Sep 2019 13:08:44 -0400 Received: from muru.com ([72.249.23.125]:60132 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2394938AbfIGRIn (ORCPT ); Sat, 7 Sep 2019 13:08:43 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 79F03805C; Sat, 7 Sep 2019 17:09:11 +0000 (UTC) Date: Sat, 7 Sep 2019 10:08:38 -0700 From: Tony Lindgren To: "H. Nikolaus Schaller" Cc: =?utf-8?Q?Beno=C3=AEt?= Cousson , Rob Herring , Adam Ford , =?utf-8?B?QW5kcsOp?= Roth , Mark Rutland , "Rafael J. Wysocki" , Viresh Kumar , Enric Balletbo i Serra , Javier Martinez Canillas , Roger Quadros , Teresa Remmet , Linux-OMAP , devicetree , Linux Kernel Mailing List , linux-pm@vger.kernel.org, Discussions about the Letux Kernel , kernel@pyra-handheld.com, linux-arm-kernel Subject: Re: [PATCH 1/4] cpufreq: ti-cpufreq: add support for omap34xx and omap36xx Message-ID: <20190907170838.GH52127@atomide.com> References: <0eb7129f6148faac0150d6299ac97347484c7125.1567839375.git.hns@goldelico.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.4 (2019-03-13) Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Archived-At: List-Archive: List-Post: * H. Nikolaus Schaller [190907 07:38]: > > Am 07.09.2019 um 08:56 schrieb H. Nikolaus Schaller : > > @@ -190,6 +272,11 @@ static const struct of_device_id ti_cpufreq_of_match[] = { > > { .compatible = "ti,am33xx", .data = &am3x_soc_data, }, > > { .compatible = "ti,am43", .data = &am4x_soc_data, }, > > { .compatible = "ti,dra7", .data = &dra7_soc_data }, > > + { .compatible = "ti,omap34xx", .data = &omap34xx_soc_data, }, > > + { .compatible = "ti,omap36xx", .data = &omap36xx_soc_data, }, > > + /* legacy */ > > + { .compatible = "ti,omap3430", .data = &omap34xx_soc_data, }, > > + { .compatible = "ti,omap3630", .data = &omap36xx_soc_data, }, > > Well, I just realized that with the latest DTS changes, > > ti,omap34xx and ti,omap36xx are legacy and > ti,omap3430 and ti,omap3630 are now official. Heh :) Anyways, with that changed, this looks good to me: Reviewed-by: Tony Lindgren