mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Guido Martínez" <guido@vanguardiasur.com.ar>
To: LKML <linux-kernel@vger.kernel.org>
Cc: "Greg KH" <gregkh@linuxfoundation.org>,
	"Walter Lozano" <walter@vanguardiasur.com.ar>,
	"Ezequiel García" <ezequiel@vanguardiasur.com.ar>,
	driverdev-devel@linuxdriverproject.org,
	forest@alittletooquiet.net, "Guido Martínez" <mtzguido@gmail.com>
Subject: [PATCH v3 0/2] staging: vt6655: style fixes
Date: Sat, 19 Apr 2014 16:44:58 -0300	[thread overview]
Message-ID: <1397936700-5181-1-git-send-email-mtzguido@gmail.com> (raw)
In-Reply-To: <1396461184-13231-1-git-send-email-guido@vanguardiasur.com.ar>

Update the third and fourth v2 patches to apply cleanly on greg's
current tree.

Guido Martínez (2):
  staging: vt6655: remove dead code
  staging: vt6655: fix checkpatch bracing issues

 drivers/staging/vt6655/IEEE11h.c     |   6 -
 drivers/staging/vt6655/baseband.c    | 101 ++++-----
 drivers/staging/vt6655/bssdb.c       |   6 +-
 drivers/staging/vt6655/bssdb.h       |   2 -
 drivers/staging/vt6655/card.c        | 181 ++++++----------
 drivers/staging/vt6655/card.h        |   1 -
 drivers/staging/vt6655/channel.c     |  80 +++----
 drivers/staging/vt6655/datarate.c    |  22 +-
 drivers/staging/vt6655/desc.h        |  47 ----
 drivers/staging/vt6655/device.h      |   6 -
 drivers/staging/vt6655/device_main.c | 298 +++++++------------------
 drivers/staging/vt6655/dpc.c         | 142 ++++--------
 drivers/staging/vt6655/hostap.c      |  63 +-----
 drivers/staging/vt6655/ioctl.c       |   1 -
 drivers/staging/vt6655/ioctl.h       |   9 -
 drivers/staging/vt6655/iowpa.h       |   7 -
 drivers/staging/vt6655/iwctl.c       | 393 +++++++--------------------------
 drivers/staging/vt6655/key.c         |  55 ++---
 drivers/staging/vt6655/key.h         |   2 -
 drivers/staging/vt6655/mac.c         |  96 ++++----
 drivers/staging/vt6655/mac.h         |   1 -
 drivers/staging/vt6655/mib.c         |  81 ++++---
 drivers/staging/vt6655/mib.h         |   8 -
 drivers/staging/vt6655/michael.c     |  33 +--
 drivers/staging/vt6655/power.c       |  36 +--
 drivers/staging/vt6655/power.h       |   3 -
 drivers/staging/vt6655/rf.c          |  69 +++---
 drivers/staging/vt6655/rxtx.c        | 329 ++++++++++------------------
 drivers/staging/vt6655/rxtx.h        |  11 -
 drivers/staging/vt6655/tether.c      |   4 +-
 drivers/staging/vt6655/tkip.c        |   7 +-
 drivers/staging/vt6655/vntwifi.c     | 115 +++-------
 drivers/staging/vt6655/vntwifi.h     |  14 --
 drivers/staging/vt6655/wcmd.c        | 126 +++++------
 drivers/staging/vt6655/wctl.c        |   9 +-
 drivers/staging/vt6655/wmgr.c        | 410 ++++++++++++-----------------------
 drivers/staging/vt6655/wmgr.h        |  30 ---
 drivers/staging/vt6655/wpa.c         |   8 +-
 drivers/staging/vt6655/wpa2.c        |  41 ++--
 drivers/staging/vt6655/wpactl.c      |  65 +-----
 drivers/staging/vt6655/wroute.c      |   1 -
 41 files changed, 867 insertions(+), 2052 deletions(-)

-- 
1.9.1


  parent reply	other threads:[~2014-04-19 19:47 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-01 12:52 [PATCH 0/3] " Guido Martínez
2014-04-01 12:52 ` [PATCH 1/3] staging: vt6655: fix DBG_PRT and PRINT_K macros Guido Martínez
2014-04-01 14:02   ` Dan Carpenter
2014-04-01 16:33   ` Greg KH
2014-04-01 16:56     ` Guido Martínez
2014-04-01 17:06       ` Greg KH
2014-04-01 12:52 ` [PATCH 2/3] staging: vt6655: remove dead code Guido Martínez
2014-04-01 14:19   ` Dan Carpenter
2014-04-01 12:52 ` [PATCH 3/3] staging: vt6655: fix checkpatch bracing issues Guido Martínez
2014-04-01 14:13   ` Dan Carpenter
2014-04-01 14:19     ` Guido Martínez
2014-04-02 17:53 ` [PATCH v2 0/4] staging: vt6655: style fixes Guido Martínez
2014-04-02 17:53   ` [PATCH v2 1/4] staging: vt6655: fix DBG_PRT and PRINT_K macros Guido Martínez
2014-04-02 17:53   ` [PATCH v2 2/4] staging: vt6655: remove mention of nonexistent function CARDbSetBasicRate Guido Martínez
2014-04-02 17:53   ` [PATCH v2 3/4] staging: vt6655: remove dead code Guido Martínez
2014-04-18 23:09     ` Greg KH
2014-04-19 19:43       ` Guido Martínez
2014-04-02 17:53   ` [PATCH v2 4/4] staging: vt6655: fix checkpatch bracing issues Guido Martínez
2014-04-02 18:09   ` [PATCH v2 0/4] staging: vt6655: style fixes Dan Carpenter
2014-04-03  0:15   ` Ezequiel García
2014-04-19 19:44   ` Guido Martínez [this message]
2014-04-19 19:44     ` [PATCH v3 1/2] staging: vt6655: remove dead code Guido Martínez
2014-04-19 19:45     ` [PATCH v3 2/2] staging: vt6655: fix checkpatch bracing issues Guido Martínez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1397936700-5181-1-git-send-email-mtzguido@gmail.com \
    --to=guido@vanguardiasur.com.ar \
    --cc=driverdev-devel@linuxdriverproject.org \
    --cc=ezequiel@vanguardiasur.com.ar \
    --cc=forest@alittletooquiet.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mtzguido@gmail.com \
    --cc=walter@vanguardiasur.com.ar \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome