mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 03:24:53 -04:00
The Kconfig in the parent directory already has the first 'if NET_VENDOR_MICROCHIP' gating the inclusion of this Kconfig, meaning that the second 'if NET_VENDOR_MICROCHIP' condition is effectively dead code. I propose removing the second 'if NET_VENDOR_MICROCHIP' in drivers/net/ethernet/microchip/fdma/Kconfig This dead code was found by kconfirm, a static analysis tool for Kconfig. Signed-off-by: Julian Braha <julianbraha@gmail.com> Link: https://patch.msgid.link/20260329185348.526893-1-julianbraha@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
15 lines
403 B
Plaintext
15 lines
403 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Microchip FDMA API configuration
|
|
#
|
|
|
|
config FDMA
|
|
bool "FDMA API" if COMPILE_TEST
|
|
help
|
|
Provides the basic FDMA functionality for multiple Microchip
|
|
switchcores.
|
|
|
|
Say Y here if you want to build the FDMA API that provides a common
|
|
set of functions and data structures for interacting with the Frame
|
|
DMA engine in multiple microchip switchcores.
|