All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] staging: Remove useless initialisation
@ 2015-10-15  8:02 Amitoj Kaur Chawla
  2015-10-15  8:04 ` [PATCH 01/18] staging: rtl8723au: hal: Remove useless intialisation Amitoj Kaur Chawla
                   ` (18 more replies)
  0 siblings, 19 replies; 23+ messages in thread
From: Amitoj Kaur Chawla @ 2015-10-15  8:02 UTC (permalink / raw)
  To: outreachy-kernel

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



^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2015-10-15 14:10 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-15  8:02 [PATCH 00/18] staging: Remove useless initialisation Amitoj Kaur Chawla
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

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.