All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Staging: Remove exceptional & on function name.
@ 2016-09-18  0:57 Sandhya Bankar
  2016-09-18  1:02 ` [PATCH v2 1/2] Staging: lustre: namei: " Sandhya Bankar
  2016-09-18 12:26 ` [PATCH v2 2/2] Staging: lustre: file: " Sandhya Bankar
  0 siblings, 2 replies; 3+ messages in thread
From: Sandhya Bankar @ 2016-09-18  0:57 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: oleg.drokin, andreas.dilger, jsimmons, gregkh

A function name is already a pointer, and does not need &.
This changes are made by below coccinelle script:

// <smpl>
@r@
identifier f;
@@
f(...) { ... }
@@
identifier r.f;
@@
- &f
+ f
// </smpl>

Changes in v2:
* Correcting the commit message.
* Correcting the file permission issue.

Sandhya Bankar (2):
  Staging: lustre: file: Remove exceptional & on function name.
  Staging: lustre: namei: Remove exceptional & on function name.

 drivers/staging/lustre/lustre/llite/file.c  |    2 +-
 drivers/staging/lustre/lustre/llite/namei.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



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

end of thread, other threads:[~2016-09-18 12:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-18  0:57 [PATCH v2 0/2] Staging: Remove exceptional & on function name Sandhya Bankar
2016-09-18  1:02 ` [PATCH v2 1/2] Staging: lustre: namei: " Sandhya Bankar
2016-09-18 12:26 ` [PATCH v2 2/2] Staging: lustre: file: " Sandhya Bankar

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.