diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-10-26 15:08:03 +0200 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2023-11-07 19:05:15 +0100 |
commit | 6affe08aea5f3b630565676e227b41d55a6f009c (patch) | |
tree | d241517de15d44dfbf2a803c30767e41be90316a /drivers/nvme/Makefile | |
parent | nvme: start keep-alive after admin queue setup (diff) | |
download | linux-6affe08aea5f3b630565676e227b41d55a6f009c.tar.xz linux-6affe08aea5f3b630565676e227b41d55a6f009c.zip |
nvme: common: make keyring and auth separate modules
When only the keyring module is included but auth is not, modpost
complains about the lack of a module license tag:
ERROR: modpost: missing MODULE_LICENSE() in drivers/nvme/common/nvme-common.o
Address this by making both modules buildable standalone,
removing the now unnecessary CONFIG_NVME_COMMON symbol
in the process.
Also, now that NVME_KEYRING config symbol can be either a module or
built-in, the stubs need to check for '#if IS_ENABLED' rather than a
simple '#ifdef'.
Fixes: 9d77eb5277849 ("nvme-keyring: register '.nvme' keyring")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme/Makefile')
-rw-r--r-- | drivers/nvme/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/Makefile b/drivers/nvme/Makefile index eedca8c72098..74f59ceed3d5 100644 --- a/drivers/nvme/Makefile +++ b/drivers/nvme/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_NVME_COMMON) += common/ +obj-y += common/ obj-y += host/ obj-y += target/ |