mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-08 21:53:54 +08:00
7a2f6f61e8
When IIO_RESCALE_KUNIT_TEST=y and IIO_RESCALE=m,
drivers/iio/afe/iio-rescale.o is built twice causing the
MODULE_LICENSE() to be lost, as shown by:
ERROR: modpost: missing MODULE_LICENSE() in drivers/iio/afe/iio-rescale.o
Rework the build configuration to have the dependency specified in the
Kconfig.
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Fixes: 8e74a48d17
("iio: test: add basic tests for the iio-rescale driver")
Signed-off-by: Liam Beguin <liambeguin@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20220601142138.3331278-1-liambeguin@gmail.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
20 lines
562 B
Plaintext
20 lines
562 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Industrial I/O subsystem unit tests configuration
|
|
#
|
|
|
|
# Keep in alphabetical order
|
|
config IIO_RESCALE_KUNIT_TEST
|
|
bool "Test IIO rescale conversion functions"
|
|
depends on KUNIT=y && IIO_RESCALE=y
|
|
default KUNIT_ALL_TESTS
|
|
help
|
|
If you want to run tests on the iio-rescale code say Y here.
|
|
|
|
This takes advantage of ARCH=um to run tests and should be used by
|
|
developers to tests their changes to the rescaling logic.
|
|
|
|
config IIO_TEST_FORMAT
|
|
bool "Test IIO formatting functions"
|
|
depends on KUNIT=y
|