Received: by 10.213.65.68 with SMTP id h4csp4237030imn; Tue, 10 Apr 2018 11:26:56 -0700 (PDT) X-Google-Smtp-Source: AIpwx49HpNhytn+o61sEOXCfxyXAUD7tOC2wNVuU/q1WkPPz6hnDF7zdk2O4w0AtUyiN/uLBKlj9 X-Received: by 10.99.104.9 with SMTP id d9mr1062389pgc.304.1523384816537; Tue, 10 Apr 2018 11:26:56 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523384816; cv=none; d=google.com; s=arc-20160816; b=KnjM1cVZhmQ12/PutYecx7rIZ+qq38kKV2guX0rryTCzDfTuXul0gNNJZWhTvH4JsB AuQHBhATZqaJwd0lB0RcUmFnRKvfqKqYjT2Iv6mhEdCfn59xAwhMLnnDjRpcHF1eVTbk IER8v+M2UB/unkKi75vRGOdCnEi2A5r8qt0aXBBPkuQVPJXxhgxFLRyi7gcdUYg4ZEMu G00wpoc9e2pwZIL3CZQ6US9ZB7EoAg2Gl6/Sh5M4hxRcQL3rgl9dVxNO6Bx+Mf47uk8h KfASeUPYrP3DXmbf9vWojCOYizxGptv7TdFe/11x+J0DGno7nU6MginbLBUmn9dwNvzf IXvg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:subject:user-agent:message-id :references:cc:in-reply-to:from:to:content-transfer-encoding :mime-version:dmarc-filter:arc-authentication-results; bh=ZgD2NipnsYnzT36bOwUCfHbwymq3what84LuKhv/zPw=; b=Q/ezsFp9MeilFAPnDT9cWKQfQh1UAvcWAHXFTZ9z5lcO5WqNG39aMeuQ9YvXVxiSiP 2LuvVxmZI4Af0EBG7sUYTK8VOK1pZSWavzJmozrovbZLBhy0ZnfacgyotIOoyALWy4CP N1xmq2GBr/ipP4U3q1QtqF3301mrH5/A38eCr9qkUt1A0Y5FyDi9kG75oJ/PIIlmaImy sga9+jqo9zd5cfTiEC7PDda/nPhjFiewqCKpghyzCL8Vct7PDw1emAwMyXYv6CNMsQaQ D97sKTY7CZQWQmN7Jgg6ap6e7Ya83vHIl99dihSrAvY5HH46ui1NppSZsHw4UNd4HZWW yBRg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b13si2461228pfi.53.2018.04.10.11.26.19; Tue, 10 Apr 2018 11:26:56 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752181AbeDJSUw convert rfc822-to-8bit (ORCPT + 99 others); Tue, 10 Apr 2018 14:20:52 -0400 Received: from mail.kernel.org ([198.145.29.99]:59294 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751624AbeDJSUu (ORCPT ); Tue, 10 Apr 2018 14:20:50 -0400 Received: from localhost (unknown [104.132.1.75]) (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 5404421738; Tue, 10 Apr 2018 18:20:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5404421738 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=sboyd@kernel.org Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT To: Frank Rowand , Rob Herring , Viresh Kumar From: Stephen Boyd In-Reply-To: Cc: Viresh Kumar , Vincent Guittot , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org References: Message-ID: <152338444966.180276.17472609064497290233@swboyd.mtv.corp.google.com> User-Agent: alot/0.7 Subject: Re: [PATCH] of: Don't create platform device for OPP tables Date: Tue, 10 Apr 2018 11:20:49 -0700 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Viresh Kumar (2018-04-10 02:05:22) > The OPP tables are present as separate nodes, whose phandle is used in > the "operating-points-v2" property of devices. Currently the OF core > creates a platform device for the OPP table unconditionally, which is > not used by any kernel code. > > Skip creating OPP table platform devices. > > Reported-by: Stephen Boyd > Signed-off-by: Viresh Kumar > --- Reviewed-by: Stephen Boyd