From patchwork Thu Dec 3 04:14:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Daiker X-Patchwork-Id: 64407 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id nB34FGnn006169 for ; Thu, 3 Dec 2009 04:15:17 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753891AbZLCEPG (ORCPT ); Wed, 2 Dec 2009 23:15:06 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753445AbZLCEPG (ORCPT ); Wed, 2 Dec 2009 23:15:06 -0500 Received: from mail-pz0-f184.google.com ([209.85.222.184]:33260 "EHLO mail-pz0-f184.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752115AbZLCEPE (ORCPT ); Wed, 2 Dec 2009 23:15:04 -0500 Received: by pzk14 with SMTP id 14so923738pzk.23 for ; Wed, 02 Dec 2009 20:15:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=gGbSOPjskQ0Z3QKVExwOfS/JrPLMO7qAaMNqyZkeigs=; b=mP+pT1fj5MIoy7PgMbAt+LUpnxduP9jxVwGjrNpVtRsL6We4qSrzp1ReNMysDNCIcK Ngqn1xckqgF5yuMG/z4VPESfMUPnJmUrv3PT9+NbDBNrgPZhazTqO7Oj/z3tBjmWl9e4 //0jvDuPmtBMk4xI7YFTJGE4VYJ5fBWS26uBw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=Aqa4MSLET+YUA0Kfz6zbxPl90x5TJFOFYfVNjl+vN69+Jwq/MqzmXlHp9V80MqY04d L2uGttTkl1l3U64xYP1zZv1PUc4x1YjTtHGnoZs9dLbspYff50BfIZL2FVzkkxPDDJTs 0b0CdTqaAhqKjRD6SVe7Wgo9YkCSIQZZw0kf4= Received: by 10.115.37.37 with SMTP id p37mr1813505waj.11.1259813710963; Wed, 02 Dec 2009 20:15:10 -0800 (PST) Received: from localhost.localdomain (pool-173-50-250-28.ptldor.fios.verizon.net [173.50.250.28]) by mx.google.com with ESMTPS id 21sm1362461pzk.11.2009.12.02.20.15.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 02 Dec 2009 20:15:10 -0800 (PST) From: John Daiker To: linux-wireless@vger.kernel.org Cc: samuel.ortiz@intel.com, yi.zhu@intel.com, John Daiker Subject: [PATCH] Remove double semicolons Date: Wed, 2 Dec 2009 20:14:29 -0800 Message-Id: <1259813669-29946-1-git-send-email-daikerjohn@gmail.com> X-Mailer: git-send-email 1.6.3.3 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org diff --git a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c index 72c27a3..5e3cf5e 100644 --- a/drivers/net/wireless/iwmc3200wifi/rx.c +++ b/drivers/net/wireless/iwmc3200wifi/rx.c @@ -874,28 +874,28 @@ static int iwm_mlme_mgt_frame(struct iwm_priv *iwm, u8 *buf, le16_to_cpu(mgt_frame->len)); if (ieee80211_is_assoc_req(mgt->frame_control)) { - ie = mgt->u.assoc_req.variable;; + ie = mgt->u.assoc_req.variable; iwm->req_ie_len = le16_to_cpu(mgt_frame->len) - (ie - (u8 *)mgt); kfree(iwm->req_ie); iwm->req_ie = kmemdup(mgt->u.assoc_req.variable, iwm->req_ie_len, GFP_KERNEL); } else if (ieee80211_is_reassoc_req(mgt->frame_control)) { - ie = mgt->u.reassoc_req.variable;; + ie = mgt->u.reassoc_req.variable; iwm->req_ie_len = le16_to_cpu(mgt_frame->len) - (ie - (u8 *)mgt); kfree(iwm->req_ie); iwm->req_ie = kmemdup(mgt->u.reassoc_req.variable, iwm->req_ie_len, GFP_KERNEL); } else if (ieee80211_is_assoc_resp(mgt->frame_control)) { - ie = mgt->u.assoc_resp.variable;; + ie = mgt->u.assoc_resp.variable; iwm->resp_ie_len = le16_to_cpu(mgt_frame->len) - (ie - (u8 *)mgt); kfree(iwm->resp_ie); iwm->resp_ie = kmemdup(mgt->u.assoc_resp.variable, iwm->resp_ie_len, GFP_KERNEL); } else if (ieee80211_is_reassoc_resp(mgt->frame_control)) { - ie = mgt->u.reassoc_resp.variable;; + ie = mgt->u.reassoc_resp.variable; iwm->resp_ie_len = le16_to_cpu(mgt_frame->len) - (ie - (u8 *)mgt); kfree(iwm->resp_ie);