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

The function names is itself used as pointers without &.
This changes are made by below coccinelle script:

// <smpl>
@r@
identifier f;
@@

f(...) { ... }
@@
identifier r.f;
@@

- &f
+ f
// </smpl>

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] 4+ messages in thread

end of thread, other threads:[~2016-09-17 19:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-17  6:32 [PATCH 0/2] Staging: Remove exceptional & on function name Sandhya Bankar
2016-09-17  6:36 ` [PATCH 1/2] Staging: lustre: file: " Sandhya Bankar
2016-09-17  6:39 ` [PATCH 2/2] Staging: lustre: namei: " Sandhya Bankar
2016-09-17 19:24   ` [Outreachy kernel] " Julia Lawall

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.