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 A5830C433E0 for ; Wed, 20 May 2020 10:21:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 77B08207ED for ; Wed, 20 May 2020 10:21:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589970077; bh=S7tsdwkiGlZosauRkq6IW1mxdJPbcPef9De8p/Neb20=; h=In-Reply-To:References:Subject:From:Cc:To:Date:List-ID:From; b=qVIT4dr4z7bBDgEJjLJulBQQ8T7bSHw/i+EE/QNqgnUr59MhlXIFy2D1o9/o0PndJ N5TIMdGG51hgc7nyjBLbXChIQmOQuuw/GZeLghXI0VAAyThTQfladDqcyoNC334hu8 fG/6lFkqS6FM+nIjDlUuSjShXHRF6tdHOX2wg93w= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726747AbgETKVP (ORCPT ); Wed, 20 May 2020 06:21:15 -0400 Received: from mail.kernel.org ([198.145.29.99]:36158 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726403AbgETKVM (ORCPT ); Wed, 20 May 2020 06:21:12 -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 568C0207C4; Wed, 20 May 2020 10:21:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589970072; bh=S7tsdwkiGlZosauRkq6IW1mxdJPbcPef9De8p/Neb20=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=2KKDky4YfNsdoMUsOT6q866Gu85DZEO5U2zNBrmYAkybjIIujOMSiuwZb+vnRutu/ 60YwDeoKmU7WyRvP7vfVdBynaEy9BgJzTT12+v/auDjVVh8aHC+KBgNvuTgwAZsw4n HYUiiK2wFmUK+NL0nuwYfd+Mo1hVhhRFaFwANN+s= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20200518113156.25009-3-matthias.bgg@kernel.org> References: <20200518113156.25009-1-matthias.bgg@kernel.org> <20200518113156.25009-3-matthias.bgg@kernel.org> Subject: Re: [PATCH 3/4] clk/soc: mediatek: mt6779: 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 To: Matthias Brugger , Michael Turquette , Rob Herring , matthias.bgg@kernel.org Date: Wed, 20 May 2020 03:21:11 -0700 Message-ID: <158997007160.215346.10358796743530839745@swboyd.mtv.corp.google.com> User-Agent: alot/0.9 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting matthias.bgg@kernel.org (2020-05-18 04:31:55) > 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