From nobody Fri Dec 26 17:19:00 2025 Received: from out30-131.freemail.mail.aliyun.com (out30-131.freemail.mail.aliyun.com [115.124.30.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BFCEE4A0E for ; Wed, 3 Jan 2024 01:20:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R101e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046060;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=10;SR=0;TI=SMTPD_---0Vzs.HFt_1704244810; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0Vzs.HFt_1704244810) by smtp.aliyun-inc.com; Wed, 03 Jan 2024 09:20:10 +0800 From: Yang Li To: daniel@ffwll.ch, airlied@gmail.com, mripard@kernel.org, tzimmermann@suse.de, maarten.lankhorst@linux.intel.com Cc: lucas.demarchi@intel.com, intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next] drm/xe/kunit: Remove duplicated include in xe_pci.c Date: Wed, 3 Jan 2024 09:20:09 +0800 Message-Id: <20240103012009.67352-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The header files test-bug.h is included twice in xe_pci.c, so one inclusion can be removed. ./drivers/gpu/drm/xe/tests/xe_pci.c: kunit/test-bug.h is included more than= once. Signed-off-by: Yang Li --- drivers/gpu/drm/xe/tests/xe_pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/x= e_pci.c index 602793644f61..6d53f9fd17e4 100644 --- a/drivers/gpu/drm/xe/tests/xe_pci.c +++ b/drivers/gpu/drm/xe/tests/xe_pci.c @@ -9,7 +9,6 @@ =20 #include #include -#include #include =20 struct kunit_test_data { --=20 2.20.1.7.g153144c