From patchwork Tue Jan 9 00:47:28 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 13514217 Received: from out30-97.freemail.mail.aliyun.com (out30-97.freemail.mail.aliyun.com [115.124.30.97]) (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 0AEA71844; Tue, 9 Jan 2024 00:47:32 +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=01201311R121e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046049;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0W-GKshY_1704761249; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0W-GKshY_1704761249) by smtp.aliyun-inc.com; Tue, 09 Jan 2024 08:47:30 +0800 From: Yang Li To: jonathan.cameron@huawei.com, dave@stgolabs.net Cc: linux-cxl@vger.kernel.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next] cxl: Remove duplicated include in cdat.c Date: Tue, 9 Jan 2024 08:47:28 +0800 Message-Id: <20240109004728.54703-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c Precedence: bulk X-Mailing-List: linux-cxl@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The header files core.h is included twice in cdat.c, so one inclusion can be removed. Signed-off-by: Yang Li Reviewed-by: Jonathan Cameron Reviewed-by: Dave Jiang --- drivers/cxl/core/cdat.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/cxl/core/cdat.c b/drivers/cxl/core/cdat.c index f5e649407b8b..6fe11546889f 100644 --- a/drivers/cxl/core/cdat.c +++ b/drivers/cxl/core/cdat.c @@ -9,7 +9,6 @@ #include "cxlmem.h" #include "core.h" #include "cxl.h" -#include "core.h" struct dsmas_entry { struct range dpa_range;