diff options
author | Vaishali Thakkar <vthakkar1994@gmail.com> | 2015-07-07 12:32:54 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-08 16:04:06 -0700 |
commit | b11b6ed0f97f900f5c4bba9b3abcd2d2dab73ca7 (patch) | |
tree | 16d07a0677f2094beb6d8297ba80b93dc73f8445 /lib/test_bpf.c | |
parent | f9cbce34c34bcc05ea0dd78c8999bfe88b5b6b86 (diff) | |
download | linux-b11b6ed0f97f900f5c4bba9b3abcd2d2dab73ca7.tar.bz2 |
net: ec_bhf: Use module_pci_driver
Use module_pci_driver for drivers whose init and exit functions
only register and unregister, respectively.
A simplified version of the Coccinelle semantic patch that performs
this transformation is as follows:
@a@
identifier f, x;
@@
-static f(...) { return pci_register_driver(&x); }
@b depends on a@
identifier e, a.x;
@@
-static e(...) { pci_unregister_driver(&x); }
@c depends on a && b@
identifier a.f;
declarer name module_init;
@@
-module_init(f);
@d depends on a && b && c@
identifier b.e, a.x;
declarer name module_exit;
declarer name module_pci_driver;
@@
-module_exit(e);
+module_pci_driver(x);
Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/test_bpf.c')
0 files changed, 0 insertions, 0 deletions