diff options
author | Johan Hovold <johan@kernel.org> | 2020-12-07 10:13:08 +0100 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2020-12-07 13:00:52 +0100 |
commit | 2d26c716fc49f41a63e1efe8f1f772b0adeaacef (patch) | |
tree | ad870c954535e9a8373514b3e923d328eceb48ed /include/linux/module.h | |
parent | 147ad605dc12c515c97136899ccb5c70e6c674e1 (diff) | |
download | lwn-2d26c716fc49f41a63e1efe8f1f772b0adeaacef.tar.gz lwn-2d26c716fc49f41a63e1efe8f1f772b0adeaacef.zip |
module: drop semicolon from version macro
Drop the trailing semicolon from the MODULE_VERSION() macro definition
which was left when removing the array-of-pointer indirection.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 5958075ea3f4..e7a619c2457e 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -279,7 +279,7 @@ extern typeof(name) __mod_##type##__##name##_device_table \ }, \ .module_name = KBUILD_MODNAME, \ .version = _version, \ - }; + } #endif /* Optional firmware file (or files) needed by the module |