From patchwork Fri Apr 9 15:34:56 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 1464436 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=linux-ide-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4FH2Hs2k1fz9sW5 for ; Sat, 10 Apr 2021 01:34:49 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233333AbhDIPfA (ORCPT ); Fri, 9 Apr 2021 11:35:00 -0400 Received: from mga03.intel.com ([134.134.136.65]:46596 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231402AbhDIPe5 (ORCPT ); Fri, 9 Apr 2021 11:34:57 -0400 IronPort-SDR: JblP59kHhP8eZJDQbNX2htGPy7Q93aqRMrML3MbMWoW6LlgnoFp5Bi5Zd8wXhZK7HcECFnypeQ S5USfyM5EKVQ== X-IronPort-AV: E=McAfee;i="6000,8403,9949"; a="193825786" X-IronPort-AV: E=Sophos;i="5.82,209,1613462400"; d="scan'208";a="193825786" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Apr 2021 08:34:42 -0700 IronPort-SDR: FVJd+3rp/57Vkn9pB/BjYjj4tsF6Zn7H4gFq2B/cFZcox+dgHa7Bey77+1Hb6hv3+AXsVBxUe8 auyWa1IZJvWQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,209,1613462400"; d="scan'208";a="397512634" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga002.jf.intel.com with ESMTP; 09 Apr 2021 08:34:41 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 9C49BFC; Fri, 9 Apr 2021 18:34:57 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Jens Axboe Subject: [PATCH v2 1/1] ata: Replace inclusion of kernel.h by bits.h in the header Date: Fri, 9 Apr 2021 18:34:56 +0300 Message-Id: <20210409153456.87798-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org ata.h uses BIT() macro, hence bits.h must be included. Otherwise there is no need to have kernel.h included, I do not see any direct users of it in ata.h. Hence replace inclusion of kernel.h. Signed-off-by: Andy Shevchenko --- v2: replaced kernel.h by bits.h (lkp), tested allmod/yesconfig on x86_64 (Jens) include/linux/ata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/ata.h b/include/linux/ata.h index 6e67aded28f8..1b44f40c7700 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h @@ -13,7 +13,7 @@ #ifndef __LINUX_ATA_H__ #define __LINUX_ATA_H__ -#include +#include #include #include #include