netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/15] don't export static symbol
@ 2015-03-11 16:56 Julia Lawall
  2015-03-11 16:56 ` [PATCH 3/15] net/mlx5_core: " Julia Lawall
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Julia Lawall @ 2015-03-11 16:56 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: alsa-devel, linux-nfs, linux-scsi, linux-rdma, kernel-janitors,
	linux-wireless, linux-kernel, linux-wpan, target-devel,
	linux-crypto, netdev, linux-media, linuxppc-dev, linux-edac

These patches remove EXPORT_SYMBOL or EXPORT_SYMBOL_GPL declarations on
static functions.

This was done using the following semantic patch:
(http://coccinelle.lip6.fr/)

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

static T f (...) { ... }

@@
identifier r.f;
declarer name EXPORT_SYMBOL;
@@

-EXPORT_SYMBOL(f);

@@
identifier r.f;
declarer name EXPORT_SYMBOL_GPL;
@@

-EXPORT_SYMBOL_GPL(f);
// </smpl>

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

end of thread, other threads:[~2015-03-14 16:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-11 16:56 [PATCH 0/15] don't export static symbol Julia Lawall
2015-03-11 16:56 ` [PATCH 3/15] net/mlx5_core: " Julia Lawall
2015-03-12  4:04   ` David Miller
2015-03-11 16:56 ` [PATCH 8/15] libertas_tf: if_usb.c: " Julia Lawall
2015-03-13 14:18   ` [8/15] " Kalle Valo
2015-03-11 16:56 ` [PATCH 13/15] ieee802154: " Julia Lawall
2015-03-11 18:17   ` Alexander Aring
2015-03-14 16:13   ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).