From patchwork Tue Aug 4 18:06:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Wise X-Patchwork-Id: 6943141 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 6B0A79F358 for ; Tue, 4 Aug 2015 18:06:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9098820411 for ; Tue, 4 Aug 2015 18:06:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 97E8E203E1 for ; Tue, 4 Aug 2015 18:06:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754223AbbHDSGd (ORCPT ); Tue, 4 Aug 2015 14:06:33 -0400 Received: from smtp.opengridcomputing.com ([72.48.136.20]:38228 "EHLO smtp.opengridcomputing.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752774AbbHDSGd (ORCPT ); Tue, 4 Aug 2015 14:06:33 -0400 Received: from build2.ogc.int (build2.ogc.int [10.10.0.32]) by smtp.opengridcomputing.com (Postfix) with ESMTP id 2579A29E52; Tue, 4 Aug 2015 13:06:33 -0500 (CDT) From: Steve Wise Subject: [PATCH] RDMA/amso1100: Do not build amso1100 without infiniband subsystem To: dledford@redhat.com Cc: linux-rdma@vger.kernel.org Date: Tue, 04 Aug 2015 13:06:33 -0500 Message-ID: <20150804180632.30555.59059.stgit@build2.ogc.int> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Moving the amso1100 driver to staging now requires a guard on the INFINIBAND subsytem in order to prevent the driver from being built without infiniband enabled. This will lead to a broken build. Signed-off-by: Steve Wise --- drivers/staging/amso1100/Kconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/staging/amso1100/Kconfig b/drivers/staging/amso1100/Kconfig index e6ce5f2..809cb14 100644 --- a/drivers/staging/amso1100/Kconfig +++ b/drivers/staging/amso1100/Kconfig @@ -1,6 +1,6 @@ config INFINIBAND_AMSO1100 tristate "Ammasso 1100 HCA support" - depends on PCI && INET + depends on PCI && INET && INFINIBAND ---help--- This is a low-level driver for the Ammasso 1100 host channel adapter (HCA).