Skip to content

Commit c5048dd

Browse files
committed
driver core: disable revocable code from build
The revocable code is still under active discussion, and there is no in-kernel users of it. So disable it from the build for now so that no one suffers from it being present in the tree, yet leave it in the source tree so that others can easily test it by reverting this commit and building off of it for future releases. Acked-by: Danilo Krummrich <dakr@kernel.org> Link: https://patch.msgid.link/2026020307-rimmed-dreamy-5a67@gregkh Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9883576 commit c5048dd

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

drivers/base/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ endmenu
254254
# Kunit test cases
255255
config REVOCABLE_KUNIT_TEST
256256
tristate "Kunit tests for revocable" if !KUNIT_ALL_TESTS
257-
depends on KUNIT
257+
depends on KUNIT && BROKEN
258258
default KUNIT_ALL_TESTS
259259
help
260260
Kunit tests for the revocable API.

drivers/base/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ obj-y := component.o core.o bus.o dd.o syscore.o \
66
cpu.o firmware.o init.o map.o devres.o \
77
attribute_container.o transport_class.o \
88
topology.o container.o property.o cacheinfo.o \
9-
swnode.o faux.o revocable.o
9+
swnode.o faux.o
1010
obj-$(CONFIG_AUXILIARY_BUS) += auxiliary.o
1111
obj-$(CONFIG_DEVTMPFS) += devtmpfs.o
1212
obj-y += power/

tools/testing/selftests/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ TARGETS += damon
1717
TARGETS += devices/error_logs
1818
TARGETS += devices/probe
1919
TARGETS += dmabuf-heaps
20-
TARGETS += drivers/base/revocable
2120
TARGETS += drivers/dma-buf
2221
TARGETS += drivers/ntsync
2322
TARGETS += drivers/s390x/uvdevice

0 commit comments

Comments
 (0)