All of lore.kernel.org
 help / color / mirror / Atom feed
From: Amitoj Kaur Chawla <amitoj1606@gmail.com>
To: outreachy-kernel@googlegroups.com
Subject: [PATCH 00/18] staging: Remove useless initialisation
Date: Thu, 15 Oct 2015 13:32:07 +0530	[thread overview]
Message-ID: <cover.1444895817.git.amitoj1606@gmail.com> (raw)

This patchset removes multiple useless intialisations of variables
which are immediately reassigned.

The semantic patch used to find this is:

// <smpl>
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// </smpl>


Amitoj Kaur Chawla (18):
  staging: rtl8723au: hal: Remove useless intialisation
  staging: rtl8723au: core: rtw_wlan_util: Remove useless intialisation
  staging: rtl8723au: core: rtw_recv: Remove useless initialisation
  staging: rtl8723au: core: rtw_ap: Remove useless intialisation
  staging: media: lirc: Remove useless initialisation
  staging: media: davinci_vpfe: Remove useless intialisation
  staging: lustre: ptlrpc: Remove useless initialisation
  staging: skein: Remove useless initialisation
  staging: vt6655: Remove useless initialisation
  staging: vt6656: Remove useless initialisation
  staging: wilc1000: wilc_wfi_cfgoperations: Remove useless
    initialisation
  staging: wilc1000: coreconfigurator: Remove useless initialisation
  staging: rdma: ipath: ipath_eeprom: Remove useless intialisation
  staging: rdma: ipath: ipath_init_chip: Remove useless initialisation
  staging: rdma: hfi1: diag: Remove useless initialisation
  staging: rdma: hfi1: sysfs: Remove useless initialisation
  staging: dgnc: dgnc_tty: Remove useless initialisation
  staging: dgnc: dgnc_driver: Remove useless initialisation

 drivers/staging/dgnc/dgnc_driver.c                   |  2 +-
 drivers/staging/dgnc/dgnc_tty.c                      |  2 +-
 drivers/staging/lustre/lustre/ptlrpc/client.c        |  2 +-
 drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c |  2 +-
 drivers/staging/media/lirc/lirc_sasem.c              |  2 +-
 drivers/staging/rdma/hfi1/diag.c                     |  4 ++--
 drivers/staging/rdma/hfi1/sysfs.c                    |  2 +-
 drivers/staging/rdma/ipath/ipath_eeprom.c            |  2 +-
 drivers/staging/rdma/ipath/ipath_init_chip.c         |  2 +-
 drivers/staging/rtl8723au/core/rtw_ap.c              |  4 ++--
 drivers/staging/rtl8723au/core/rtw_recv.c            |  6 +++---
 drivers/staging/rtl8723au/core/rtw_wlan_util.c       |  2 +-
 drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c  |  8 ++++----
 drivers/staging/skein/skein_api.c                    |  2 +-
 drivers/staging/vt6655/card.c                        |  2 +-
 drivers/staging/vt6656/card.c                        |  2 +-
 drivers/staging/wilc1000/coreconfigurator.c          | 10 +++++-----
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c    |  2 +-
 18 files changed, 29 insertions(+), 29 deletions(-)

-- 
1.9.1



             reply	other threads:[~2015-10-15  8:02 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-15  8:02 Amitoj Kaur Chawla [this message]
2015-10-15  8:04 ` [PATCH 01/18] staging: rtl8723au: hal: Remove useless intialisation Amitoj Kaur Chawla
2015-10-15  8:05 ` [Outreachy kernel] [PATCH 00/18] staging: Remove useless initialisation Julia Lawall
2015-10-15  8:29   ` Amitoj Kaur Chawla
2015-10-15 10:05     ` Julia Lawall
2015-10-15 14:10       ` Amitoj Kaur Chawla
2015-10-15  8:05 ` [PATCH 02/18] staging: rtl8723au: core: rtw_wlan_util: Remove useless intialisation Amitoj Kaur Chawla
2015-10-15  8:07 ` [PATCH 03/18] staging: rtl8723au: core: rtw_recv: Remove useless initialisation Amitoj Kaur Chawla
2015-10-15  8:08 ` [PATCH 04/18] staging: rtl8723au: core: rtw_ap: Remove useless intialisation Amitoj Kaur Chawla
2015-10-15  8:10 ` [PATCH 05/18] staging: media: lirc: Remove useless initialisation Amitoj Kaur Chawla
2015-10-15  8:11 ` [PATCH 06/18] staging: media: davinci_vpfe: Remove useless intialisation Amitoj Kaur Chawla
2015-10-15  8:12 ` [PATCH 07/18] staging: lustre: ptlrpc: Remove useless initialisation Amitoj Kaur Chawla
2015-10-15  8:14 ` [PATCH 08/18] staging: skein: " Amitoj Kaur Chawla
2015-10-15  8:15 ` [PATCH 09/18] staging: vt6655: " Amitoj Kaur Chawla
2015-10-15  8:17 ` [PATCH 10/18] staging: vt6656: " Amitoj Kaur Chawla
2015-10-15  8:18 ` [PATCH 11/18] staging: wilc1000: wilc_wfi_cfgoperations: " Amitoj Kaur Chawla
2015-10-15  8:19 ` [PATCH 12/18] staging: wilc1000: coreconfigurator: " Amitoj Kaur Chawla
2015-10-15  8:20 ` [PATCH 13/18] staging: rdma: ipath: ipath_eeprom: Remove useless intialisation Amitoj Kaur Chawla
2015-10-15  8:22 ` [PATCH 14/18] staging: rdma: ipath: ipath_init_chip: Remove useless initialisation Amitoj Kaur Chawla
2015-10-15  8:23 ` [PATCH 15/18] staging: rdma: hfi1: diag: " Amitoj Kaur Chawla
2015-10-15  8:24 ` [PATCH 16/18] staging: rdma: hfi1: sysfs: " Amitoj Kaur Chawla
2015-10-15  8:25 ` [PATCH 17/18] staging: dgnc: dgnc_tty: " Amitoj Kaur Chawla
2015-10-15  8:26 ` [PATCH 18/18] staging: dgnc: dgnc_driver: " Amitoj Kaur Chawla

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=cover.1444895817.git.amitoj1606@gmail.com \
    --to=amitoj1606@gmail.com \
    --cc=outreachy-kernel@googlegroups.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.