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=-15.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham 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 0DCFCC4338F for ; Tue, 27 Jul 2021 14:29:23 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id BD13861ABB for ; Tue, 27 Jul 2021 14:29:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org BD13861ABB Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 110FE6E106; Tue, 27 Jul 2021 14:29:22 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5EB6A6E106 for ; Tue, 27 Jul 2021 14:29:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description; bh=THKIyKaJItuuzn+mjxOm4jQhHXAEqt5rES7irp8lkI8=; b=mP2oppjzOfiz9gxL+744ngdIHc 9tUSQWJl+Kcahr7QnZuzRMtFTwcEOftgJ9lRl/DOWqAUM/3HfKToyoFC7dqh9cv1kt9u3WVDSIAvZ e3EoFm3zSppD8M9TMvc6ehypDfPWegxaAiLaiHMFNIpLFnqo/UxFD7EhbMsaDySz6cJNDDuOv9qmf BDFMQsilOWdXjnAAHim22EaZcfO+d+ar4kgBqQKgzU2eSmInugSRar5atA+9CtLZYmQsK1SI4bbgG Kxmx0lukpOa5MrSGArBQLF3RswGUkunZYHOrkZ4oPvITmCSDbFj1gZpuGfvnWg6JbQyufqfM4/NqP WyewaO3w==; Received: from [2601:1c0:6280:3f0::aefb] by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1m8O56-00F4E1-9B; Tue, 27 Jul 2021 14:29:16 +0000 Subject: Re: [PATCH] drm/pl111: Remove unused including To: Cai Huoqing , emma@anholt.net, airlied@linux.ie, daniel@ffwll.ch References: <20210727052107.659-1-caihuoqing@baidu.com> From: Randy Dunlap Message-ID: Date: Tue, 27 Jul 2021 07:29:14 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210727052107.659-1-caihuoqing@baidu.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 7/26/21 10:21 PM, Cai Huoqing wrote: > Remove including that don't need it. > > Signed-off-by: Cai Huoqing Acked-by: Randy Dunlap as reported by 'make versioncheck': ../drivers/gpu/drm/pl111/pl111_display.c: 14 linux/version.h not needed. ../drivers/gpu/drm/pl111/pl111_drv.c: 47 linux/version.h not needed. > --- > drivers/gpu/drm/pl111/pl111_display.c | 1 - > drivers/gpu/drm/pl111/pl111_drv.c | 1 - > 2 files changed, 2 deletions(-) > > diff --git a/drivers/gpu/drm/pl111/pl111_display.c b/drivers/gpu/drm/pl111/pl111_display.c > index b5a8859739a2..443e3b932322 100644 > --- a/drivers/gpu/drm/pl111/pl111_display.c > +++ b/drivers/gpu/drm/pl111/pl111_display.c > @@ -11,7 +11,6 @@ > > #include > #include > -#include > #include > #include > > diff --git a/drivers/gpu/drm/pl111/pl111_drv.c b/drivers/gpu/drm/pl111/pl111_drv.c > index fa0a737e9dea..520301b405f1 100644 > --- a/drivers/gpu/drm/pl111/pl111_drv.c > +++ b/drivers/gpu/drm/pl111/pl111_drv.c > @@ -44,7 +44,6 @@ > #include > #include > #include > -#include > > #include > #include > thanks. -- ~Randy