From patchwork Fri Jul 28 10:51:12 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Brown X-Patchwork-Id: 9868471 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1C19D6035E for ; Fri, 28 Jul 2017 10:51:30 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1D9CE288CF for ; Fri, 28 Jul 2017 10:51:30 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1181E288D7; Fri, 28 Jul 2017 10:51:30 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AD2C0288CF for ; Fri, 28 Jul 2017 10:51:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751690AbdG1Kv2 (ORCPT ); Fri, 28 Jul 2017 06:51:28 -0400 Received: from mezzanine.sirena.org.uk ([106.187.55.193]:43796 "EHLO mezzanine.sirena.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751678AbdG1Kv2 (ORCPT ); Fri, 28 Jul 2017 06:51:28 -0400 Received: from debutante.sirena.org.uk ([2001:470:1f1d:6b5::3] helo=debutante) by mezzanine.sirena.org.uk with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1db2rU-0000QK-87; Fri, 28 Jul 2017 10:51:18 +0000 Received: from broonie by debutante with local (Exim 4.89) (envelope-from ) id 1db2rR-0001yu-Af; Fri, 28 Jul 2017 11:51:13 +0100 From: Mark Brown To: Lijun Ou , Wei Hu , Doug Ledford , Sean Hefty , Hal Rosenstock Cc: linux-rdma@vger.kernel.org, Mark Brown Date: Fri, 28 Jul 2017 11:51:12 +0100 Message-Id: <20170728105112.7577-1-broonie@kernel.org> X-Mailer: git-send-email 2.13.2 X-SA-Exim-Connect-IP: 2001:470:1f1d:6b5::3 X-SA-Exim-Mail-From: broonie@sirena.org.uk Subject: [PATCH] IB/hns: Explicitly include linux/interrupt.h X-SA-Exim-Version: 4.2.1 (built Tue, 02 Aug 2016 21:08:31 +0000) X-SA-Exim-Scanned: No (on mezzanine.sirena.org.uk); Unknown failure Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This file uses interrupt APIs but doesn't explicitly include linux/interrupt.h meaning that changes in other header files could cause build breakage as happened in next-20170728 for arm64. Add an explicit include to avoid such problems. Signed-off-by: Mark Brown --- drivers/infiniband/hw/hns/hns_roce_eq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/infiniband/hw/hns/hns_roce_eq.c b/drivers/infiniband/hw/hns/hns_roce_eq.c index 50f864935a0e..e1e4c16ca3d5 100644 --- a/drivers/infiniband/hw/hns/hns_roce_eq.c +++ b/drivers/infiniband/hw/hns/hns_roce_eq.c @@ -30,6 +30,7 @@ * SOFTWARE. */ +#include #include #include "hns_roce_common.h" #include "hns_roce_device.h"