public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* cocci: remove unnecessary casts of void * while avoiding casts with __user or __force ?
@ 2017-08-28 16:49 Joe Perches
  2017-08-29  5:17 ` [Cocci] " Julia Lawall
  0 siblings, 1 reply; 2+ messages in thread
From: Joe Perches @ 2017-08-28 16:49 UTC (permalink / raw)
  To: cocci; +Cc: LKML

A simple cocci script that removes unnecessary casts of
a void * will also remove casts with __force or __user

e.g.:

-       xemaclite_aligned_write(address_ptr, (u32 __force *) addr, ETH_ALEN);
+       xemaclite_aligned_write(address_ptr, addr, ETH_ALEN);

Is there a simple mechanism to avoid converting those?

$ cat void.cocci
@@
type T;
void *v;
expression e;
@@

-	e = (T *)v;
+	e = v;

@@
identifier f;
type T;
void *v;
@@

	f(...,
-	(T *)v,
+	v,
	...)

$

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

end of thread, other threads:[~2017-08-29  5:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-28 16:49 cocci: remove unnecessary casts of void * while avoiding casts with __user or __force ? Joe Perches
2017-08-29  5:17 ` [Cocci] " Julia Lawall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox