diff options
| author | Vaishali Thakkar <[email protected]> | 2015-07-07 12:32:54 +0530 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2015-07-08 16:04:06 -0700 |
| commit | b11b6ed0f97f900f5c4bba9b3abcd2d2dab73ca7 (patch) | |
| tree | 16d07a0677f2094beb6d8297ba80b93dc73f8445 /tools/perf/scripts/python/export-to-postgresql.py | |
| parent | f9cbce34c34bcc05ea0dd78c8999bfe88b5b6b86 (diff) | |
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions