From nobody Sat Sep 21 20:16:21 2024 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5307EC00140 for ; Fri, 12 Aug 2022 20:58:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231250AbiHLU6r (ORCPT ); Fri, 12 Aug 2022 16:58:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48860 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234227AbiHLU6n (ORCPT ); Fri, 12 Aug 2022 16:58:43 -0400 Received: from mx0.riseup.net (mx0.riseup.net [198.252.153.6]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4DB4BB3B18 for ; Fri, 12 Aug 2022 13:58:43 -0700 (PDT) Received: from fews1.riseup.net (fews1-pn.riseup.net [10.0.1.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx0.riseup.net (Postfix) with ESMTPS id 4M4GHQ42MNz9s2H; Fri, 12 Aug 2022 20:58:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1660337922; bh=YOSyDteCND3ndEMO86/nMvrstN4s/JMsBfnofZVgVAc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BALkIqQaiZYXrIeHgtiGpfaBeTlXeWWyt4oxfTuEyQ/zSbf0BI74Kg9u2mii+gFKH NZooC5yEs/JF3bEjJ1hIL+tca2L0b+D3+QeArqjGjrKH/xDrzFobvYx8odxTidCjA5 /oF5ET0c5Xh1c0Om5L8twfKnckTyLy1o2iOb0eWQ= X-Riseup-User-ID: F6D98B7A89F4D59F7332F4EEFE6090DFB94B7A174B3A4C1F90ADC9E4F4AE482D Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews1.riseup.net (Postfix) with ESMTPSA id 4M4GHM57VBz5vTk; Fri, 12 Aug 2022 20:58:39 +0000 (UTC) From: =?UTF-8?q?Ma=C3=ADra=20Canal?= To: David Airlie , Daniel Vetter , Maxime Ripard Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, =?UTF-8?q?Ma=C3=ADra=20Canal?= , Rob Clark , Abhinav Kumar , Dmitry Baryshkov , Sean Paul Subject: [PATCH 3/5] drm/msm: Drop of_gpio header Date: Fri, 12 Aug 2022 17:57:44 -0300 Message-Id: <20220812205746.609107-4-mairacanal@riseup.net> In-Reply-To: <20220812205746.609107-1-mairacanal@riseup.net> References: <20220812205746.609107-1-mairacanal@riseup.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org These drivers include the deprecated OF GPIO header yet fail to use symbols from it, so drop the include. Cc: Rob Clark Cc: Abhinav Kumar Cc: Dmitry Baryshkov Cc: Sean Paul Signed-off-by: Ma=C3=ADra Canal --- drivers/gpu/drm/msm/dp/dp_parser.c | 2 +- drivers/gpu/drm/msm/hdmi/hdmi.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/msm/dp/dp_parser.c b/drivers/gpu/drm/msm/dp/dp= _parser.c index f6ab3b5586ce..9a1bd92dcdc5 100644 --- a/drivers/gpu/drm/msm/dp/dp_parser.c +++ b/drivers/gpu/drm/msm/dp/dp_parser.c @@ -3,7 +3,7 @@ * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved. */ =20 -#include +#include #include =20 #include diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdm= i.c index 93fe61b86967..f178c424257b 100644 --- a/drivers/gpu/drm/msm/hdmi/hdmi.c +++ b/drivers/gpu/drm/msm/hdmi/hdmi.c @@ -6,7 +6,6 @@ */ =20 #include -#include =20 #include #include --=20 2.37.1