Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

soc: apple: mailbox: Rename config symbol to APPLE_MAILBOX

With the original owner of APPLE_MAILBOX removed, let's rename the new
APPLE_MBOX to the old name. This avoids .config churn for downstream
users, and leaves us with an identical config symbol and module name as
before.

Acked-by: Eric Curtin <ecurtin@redhat.com>
Acked-by: Neal Gompa <neal@gompa.dev>
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Signed-off-by: Hector Martin <marcan@marcan.st>

+3 -4
+2 -3
drivers/soc/apple/Kconfig
··· 4 4 5 5 menu "Apple SoC drivers" 6 6 7 - config APPLE_MBOX 7 + config APPLE_MAILBOX 8 8 tristate "Apple SoC mailboxes" 9 9 depends on PM 10 10 depends on ARCH_APPLE || (64BIT && COMPILE_TEST) 11 - depends on !APPLE_MAILBOX 12 11 default ARCH_APPLE 13 12 help 14 13 Apple SoCs have various co-processors required for certain ··· 19 20 20 21 config APPLE_RTKIT 21 22 tristate "Apple RTKit co-processor IPC protocol" 22 - depends on APPLE_MBOX 23 + depends on APPLE_MAILBOX 23 24 depends on ARCH_APPLE || COMPILE_TEST 24 25 default ARCH_APPLE 25 26 help
+1 -1
drivers/soc/apple/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 3 - obj-$(CONFIG_APPLE_MBOX) += apple-mailbox.o 3 + obj-$(CONFIG_APPLE_MAILBOX) += apple-mailbox.o 4 4 apple-mailbox-y = mailbox.o 5 5 6 6 obj-$(CONFIG_APPLE_RTKIT) += apple-rtkit.o