From patchwork Mon Aug 6 11:49:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Sacchi X-Patchwork-Id: 1278561 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 77CAE40AC9 for ; Mon, 6 Aug 2012 11:49:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756003Ab2HFLtD (ORCPT ); Mon, 6 Aug 2012 07:49:03 -0400 Received: from mail-wg0-f44.google.com ([74.125.82.44]:50417 "EHLO mail-wg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752948Ab2HFLtB (ORCPT ); Mon, 6 Aug 2012 07:49:01 -0400 Received: by wgbdr13 with SMTP id dr13so2648006wgb.1 for ; Mon, 06 Aug 2012 04:49:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:cc:content-type; bh=KsNc2PhO47Fy4fr0oZTQee5BLkfunLZ/7bE/MeBQd6A=; b=AZkDP6p1TqwtusCczs/pjcdQH23SlCqFB5EYgS63t7VuTaqFZMcIqQMAWh3eqWHvvT v96xoAE1HkY8gEa2BsNKS0IGKg1t9OaRvadqFPDOWQSgfbdgkQu6cD/pkp9R+tm3g9GX gx4A3vqMT7JNaIKZYx/jKYScLJWYCUZjns5wogGP62xTwu/sV17Po0shgnBpvcIQMZrZ 14YtW9mkv47IjhOy27XrXa+BOuoHOG9FP+2EYKF2xfCGienRc4cJOhT6yKMVUPE4uhF0 ohbHTCfcLD+Q0+ECB8meRmbvYRf1TgPjeNKGisjIpNLai2rduVlYqVysGsFNcPnZ1rBy PDOg== MIME-Version: 1.0 Received: by 10.216.24.140 with SMTP id x12mr5783109wex.101.1344253740165; Mon, 06 Aug 2012 04:49:00 -0700 (PDT) Received: by 10.216.190.92 with HTTP; Mon, 6 Aug 2012 04:49:00 -0700 (PDT) Date: Mon, 6 Aug 2012 11:49:00 +0000 Message-ID: Subject: [PATCH]: Mac80211 driver and I checked the patch From: Christopher Sacchi To: linux-wireless@vger.kernel.org Cc: Linux Kernel Mailing List Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org The source file needed a change that was told in the description to know that the #include needed to be fixed, and the function changed another value to 0 (yes) in the description (that said FIXME.) The patch fixes a typo-like error and has been checked with checkpatch.pl in the scripts directory. Here's the patch: --- Signed-off-by: Christopher P. Sacchi -- --- main.c 2012-07-21 20:58:29.000000000 +0000 +++ mainnew.c 2012-08-05 20:00:37.000000000 +0000 @@ -32,7 +32,7 @@ #include "led.h" #include "cfg.h" #include "debugfs.h" - +#include "net/rfkill/rfkill.h" static struct lock_class_key ieee80211_rx_skb_queue_class; void ieee80211_configure_filter(struct ieee80211_local *local) @@ -183,6 +183,7 @@ int ieee80211_hw_config(struct ieee80211 * */ /* WARN_ON(ret); */ + WARN_ON(1) } return ret;