mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
ceb8bf2cea
Commit cdd30ebb1b
("module: Convert symbol namespace to string
literal") only converted MODULE_IMPORT_NS() and EXPORT_SYMBOL_NS(),
leaving DEFAULT_SYMBOL_NAMESPACE as a macro expansion.
This commit converts DEFAULT_SYMBOL_NAMESPACE in the same way to avoid
annoyance for the default namespace as well.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
284 B
Makefile
15 lines
284 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for CDX
|
|
#
|
|
# Copyright (C) 2022-2023, Advanced Micro Devices, Inc.
|
|
#
|
|
|
|
ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE='"CDX_BUS"'
|
|
|
|
obj-$(CONFIG_CDX_BUS) += cdx.o controller/
|
|
|
|
ifdef CONFIG_GENERIC_MSI_IRQ
|
|
obj-$(CONFIG_CDX_BUS) += cdx_msi.o
|
|
endif
|