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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 465A3C433EF for ; Thu, 7 Oct 2021 23:28:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2FD8060FDC for ; Thu, 7 Oct 2021 23:28:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238478AbhJGXaK (ORCPT ); Thu, 7 Oct 2021 19:30:10 -0400 Received: from mga03.intel.com ([134.134.136.65]:16759 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232772AbhJGXaJ (ORCPT ); Thu, 7 Oct 2021 19:30:09 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10130"; a="226343314" X-IronPort-AV: E=Sophos;i="5.85,355,1624345200"; d="scan'208";a="226343314" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Oct 2021 16:28:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,355,1624345200"; d="scan'208";a="440446422" Received: from lkp-server01.sh.intel.com (HELO 72c3bd3cf19c) ([10.239.97.150]) by orsmga003.jf.intel.com with ESMTP; 07 Oct 2021 16:28:13 -0700 Received: from kbuild by 72c3bd3cf19c with local (Exim 4.92) (envelope-from ) id 1mYco9-0007hn-3l; Thu, 07 Oct 2021 23:28:13 +0000 Date: Fri, 8 Oct 2021 07:27:43 +0800 From: kernel test robot To: Nick Terrell Cc: kbuild-all@lists.01.org, Linux Memory Management List , linux-kernel@vger.kernel.org Subject: [RFC PATCH linux-next] lib: zstd: fix duplicated inclusion Message-ID: <20211007232743.GA59732@7c2d80b4df4a> References: <202110080712.2N06tmuF-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202110080712.2N06tmuF-lkp@intel.com> X-Patchwork-Hint: ignore lib/zstd/common/debug.h: zstd_deps.h is included more than once. User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Generated by: scripts/checkincludes.pl Reported-by: kernel test robot Signed-off-by: kernel test robot --- debug.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/zstd/common/debug.h b/lib/zstd/common/debug.h index 6dd88d1fbd02c..c8dc0b1890369 100644 --- a/lib/zstd/common/debug.h +++ b/lib/zstd/common/debug.h @@ -65,7 +65,6 @@ #if (DEBUGLEVEL>=1) # define ZSTD_DEPS_NEED_ASSERT -# include "zstd_deps.h" #else # ifndef assert /* assert may be already defined, due to prior #include */ # define assert(condition) ((void)0) /* disable assert (default) */