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

Configure Feed

Select the types of activity you want to include in your feed.

serial: pic32_uart: allow driver to be compiled on all architectures with COMPILE_TEST

This driver currently only supports builds against a PIC32 target, or
with COMPILE_TEST on MIPS. Now that commit 24cad1a22848 ("serial:
pic32_uart: update include to use pic32.h from platform_data") is
merged, it's possible to compile this driver on other architectures.

To avoid future breakage of this driver in the future, let's update the
Kconfig so that it can be built with COMPILE_TEST enabled on all
architectures.

Signed-off-by: Brian Masney <bmasney@redhat.com>
Link: https://patch.msgid.link/20260222-serial-pic32-v1-1-8fdbc0d0d334@redhat.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Brian Masney and committed by
Greg Kroah-Hartman
37b4cab6 dcb82250

+1 -1
+1 -1
drivers/tty/serial/Kconfig
··· 802 802 803 803 config SERIAL_PIC32 804 804 tristate "Microchip PIC32 serial support" 805 - depends on MACH_PIC32 || (MIPS && COMPILE_TEST) 805 + depends on MACH_PIC32 || COMPILE_TEST 806 806 select SERIAL_CORE 807 807 help 808 808 If you have a PIC32, this driver supports the serial ports.