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 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 4E0B8C433DF for ; Wed, 20 May 2020 10:15:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1FA3820823 for ; Wed, 20 May 2020 10:15:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589969710; bh=eMxMVy+5ObFSa7X4PkqHTUtOM18qhbQrrWDasUwzbe8=; h=In-Reply-To:References:Subject:From:Cc:To:Date:List-ID:From; b=ZhYQpREoMNmZxK0AT8ViTSCNHe3Hq5JYx4YxttJfsGoD7PiOBvDjrb/TISz/zMIRq M67SglUQvauCwe+qdk9uZ86BIECaCmEAU1E+0QipEuCfSQMEOBZ07HYfMgaL4SLEt6 vg8GbErRyLEAdHBc+sX/XWXGAF69km3j8SsowkeI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726570AbgETKPJ (ORCPT ); Wed, 20 May 2020 06:15:09 -0400 Received: from mail.kernel.org ([198.145.29.99]:60510 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726546AbgETKPH (ORCPT ); Wed, 20 May 2020 06:15:07 -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 7EF73207D3; Wed, 20 May 2020 10:15:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589969707; bh=eMxMVy+5ObFSa7X4PkqHTUtOM18qhbQrrWDasUwzbe8=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=TtB15Z1E67LS1rghb8AaDiFb+mibHFgh8j8fXQpXD/dxajYz3JKznf4b1kVD0kQD3 1MD0NQBcLrOIOEIicoNt6hejb00B+7NBHQ65lIpYagezTmYVye9BeEMl6KOPLnYqZv cYUqahgKHhBh3t7K8ftJAkkwDxQpuuG/nYvgPsys= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20200518113156.25009-2-matthias.bgg@kernel.org> References: <20200518113156.25009-1-matthias.bgg@kernel.org> <20200518113156.25009-2-matthias.bgg@kernel.org> Subject: Re: [PATCH 2/4] clk/soc: mediatek: mt6797: Bind clock driver from platform device From: Stephen Boyd Cc: mtk01761 , devicetree@vger.kernel.org, Allison Randal , linux-kernel@vger.kernel.org, Thomas Gleixner , linux-mediatek@lists.infradead.org, Kate Stewart , Greg Kroah-Hartman , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Richard Fontana To: Matthias Brugger , Michael Turquette , Rob Herring , matthias.bgg@kernel.org Date: Wed, 20 May 2020 03:15:06 -0700 Message-ID: <158996970679.215346.601357207492478540@swboyd.mtv.corp.google.com> User-Agent: alot/0.9 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting matthias.bgg@kernel.org (2020-05-18 04:31:54) > From: Matthias Brugger >=20 > The mmsys driver is now the top level entry point for the multimedia > system (mmsys), we bind the clock driver by creating a platform device. > We also bind the MediaTek DRM driver which is not yet implement and > therefor will errror out for now. >=20 > Signed-off-by: Matthias Brugger > --- Acked-by: Stephen Boyd