diff options
author | Todd Poynor <toddpoynor@google.com> | 2018-08-09 20:21:01 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-08-27 19:43:42 +0200 |
commit | 1fdd6d720cdc31b569189f6c534250b9deb1152d (patch) | |
tree | 72850ab7e3dfed426d0d2a3f25bf076a6cce2cb5 /drivers/staging/gasket | |
parent | 1fb227bf2ed2834fb0a3e9baf5aba34a19b111f6 (diff) | |
download | lwn-1fdd6d720cdc31b569189f6c534250b9deb1152d.tar.gz lwn-1fdd6d720cdc31b569189f6c534250b9deb1152d.zip |
staging: gasket: remove gasket_exit()
Remove now-empty gasket_exit() function.
Signed-off-by: Todd Poynor <toddpoynor@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gasket')
-rw-r--r-- | drivers/staging/gasket/gasket_core.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/gasket/gasket_core.c b/drivers/staging/gasket/gasket_core.c index 0fe5b86b294c..aee819f379e9 100644 --- a/drivers/staging/gasket/gasket_core.c +++ b/drivers/staging/gasket/gasket_core.c @@ -1801,12 +1801,8 @@ static int __init gasket_init(void) return 0; } -static void __exit gasket_exit(void) -{ -} MODULE_DESCRIPTION("Google Gasket driver framework"); MODULE_VERSION(GASKET_FRAMEWORK_VERSION); MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Rob Springer <rspringer@google.com>"); module_init(gasket_init); -module_exit(gasket_exit); |