From patchwork Thu May 28 04:32:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guenter Roeck X-Patchwork-Id: 6495961 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@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 24F479F6CE for ; Thu, 28 May 2015 04:33:08 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4E95C20528 for ; Thu, 28 May 2015 04:33:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 640AE20547 for ; Thu, 28 May 2015 04:33:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751415AbbE1Ecv (ORCPT ); Thu, 28 May 2015 00:32:51 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:32860 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751010AbbE1Ecs (ORCPT ); Thu, 28 May 2015 00:32:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=roeck-us.net; s=default; h=Message-Id:Date:Subject:Cc:To:From; bh=v2AMx9nCN6xJ25q8JYoAM9b2j3bdfDClDqE8HSfHmtg=; b=WONvE38f3BrUnBNsLo2QR4KJ90F/6EvkkIWtTxZTPSVBuRcVJDIx9UaDZYGxnuP1NbRpTR24z9pVP0DCx5J26rx6+0rUnocmksLIjI3BKWJq9tyPzAtZPdAVuYTnlBj6Km11reAQr6ctYZnzBxfA9vkCc+TnwITDzRMdDDrGCOg=; Received: from 108-223-40-66.lightspeed.sntcca.sbcglobal.net ([108.223.40.66]:60353 helo=localhost) by bh-25.webhostbox.net with esmtpa (Exim 4.85) (envelope-from ) id 1YxpUr-002U3n-Q0; Thu, 28 May 2015 04:32:46 +0000 From: Guenter Roeck To: Johnny Kim Cc: Rachel Kim , Greg Kroah-Hartman , devel@driverdev.osuosl.org, linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org, Guenter Roeck Subject: [PATCH] staging: wilc1000: Disable for S390 Date: Wed, 27 May 2015 21:32:43 -0700 Message-Id: <1432787563-25800-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.1.0 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_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 The wilc1000 driver uses definitions such as DEBUG_LEVEL, DEBUG, and PRINT_INFO. This causes compile errors on S390 which has similar definitions in its core code. Disable the driver for S390 instead of giving the non-standard messaging code credit by trying to fix it. Signed-off-by: Guenter Roeck --- drivers/staging/wilc1000/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/wilc1000/Kconfig b/drivers/staging/wilc1000/Kconfig index 101f908bc9ed..0b349d3c1475 100644 --- a/drivers/staging/wilc1000/Kconfig +++ b/drivers/staging/wilc1000/Kconfig @@ -1,5 +1,6 @@ config WILC1000 tristate "WILC1000 support (WiFi only)" + depends on !S390 ---help--- This module only support IEEE 802.11n WiFi.