mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
The U8500 platform was converted to DT around 2013 and is DT only meanwhile. This driver has never been converted to a DT driver, so it clearly hasn't been used since then. To ease upcoming refactoring in the hwspinlock subsystem, remove this obsolete driver. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Linus Walleij <linusw@kernel.org> Acked-by: Andy Shevchenko <andriy.shevchenko@intel.com> Link: https://lore.kernel.org/r/20260401071141.4718-2-wsa+renesas@sang-engineering.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
12 lines
389 B
Makefile
12 lines
389 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Generic Hardware Spinlock framework
|
|
#
|
|
|
|
obj-$(CONFIG_HWSPINLOCK) += hwspinlock_core.o
|
|
obj-$(CONFIG_HWSPINLOCK_OMAP) += omap_hwspinlock.o
|
|
obj-$(CONFIG_HWSPINLOCK_QCOM) += qcom_hwspinlock.o
|
|
obj-$(CONFIG_HWSPINLOCK_SPRD) += sprd_hwspinlock.o
|
|
obj-$(CONFIG_HWSPINLOCK_STM32) += stm32_hwspinlock.o
|
|
obj-$(CONFIG_HWSPINLOCK_SUN6I) += sun6i_hwspinlock.o
|