From: Johan Hovold Date: Mon, 7 Dec 2020 09:13:08 +0000 (+0100) Subject: module: drop semicolon from version macro X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2d26c716fc49f41a63e1efe8f1f772b0adeaacef;p=linux.git 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 Signed-off-by: Jessica Yu --- diff --git a/include/linux/module.h b/include/linux/module.h index 5958075ea3f43..e7a619c2457e7 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