From patchwork Wed Jan 15 08:58:59 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rolf Eike Beer X-Patchwork-Id: 13941416 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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id AB114C02187 for ; Thu, 16 Jan 2025 08:08:01 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A8E5610E1C7; Thu, 16 Jan 2025 08:07:59 +0000 (UTC) X-Greylist: delayed 451 seconds by postgrey-1.36 at gabe; Wed, 15 Jan 2025 09:06:33 UTC Received: from mx1.emlix.com (mx1.emlix.com [178.63.209.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id BD97510E584 for ; Wed, 15 Jan 2025 09:06:33 +0000 (UTC) Received: from mailer.emlix.com (p5098be52.dip0.t-ipconnect.de [80.152.190.82]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.emlix.com (Postfix) with ESMTPS id 5BA995F8B6; Wed, 15 Jan 2025 09:59:00 +0100 (CET) From: Rolf Eike Beer To: Alain Volmat , David Airlie , Maarten Lankhorst , Thomas Zimmermann , Simona Vetter Cc: dri-devel@lists.freedesktop.org, Thierry Reding Subject: [PATCH] drm/sti: remove duplicate object names Date: Wed, 15 Jan 2025 09:58:59 +0100 Message-ID: <1920148.tdWV9SEqCh@devpool47.emlix.com> Organization: emlix GmbH MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 16 Jan 2025 08:07:59 +0000 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" When merging 2 drivers common object files were not deduplicated. Fixes: dcec16efd677 ("drm/sti: Build monolithic driver") Cc: stable@kernel.org Signed-off-by: Rolf Eike Beer Reviewed-by: Dmitry Baryshkov --- drivers/gpu/drm/sti/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/sti/Makefile b/drivers/gpu/drm/sti/Makefile index f203ac5514ae..f778a4eee7c9 100644 --- a/drivers/gpu/drm/sti/Makefile +++ b/drivers/gpu/drm/sti/Makefile @@ -7,8 +7,6 @@ sti-drm-y := \ sti_compositor.o \ sti_crtc.o \ sti_plane.o \ - sti_crtc.o \ - sti_plane.o \ sti_hdmi.o \ sti_hdmi_tx3g4c28phy.o \ sti_dvo.o \