File names such as pcie_ep_bcm_iproc.c / pcie_ep_bcm_iproc_regs.h seem unnecessarily long, same with CONFIG symbols' names. Let's shorten them by replacing 'bcm_iproc' with simply 'iproc'. Signed-off-by: Abhishek Shah <abhishek.shah@broadcom.com>
22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
# PCIe Endpoint configuration options
|
|
|
|
# Copyright 2020 Broadcom
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig PCIE_ENDPOINT
|
|
bool "Enable PCIe Endpoint support"
|
|
help
|
|
This option enables PCIe Endpoint support.
|
|
|
|
if PCIE_ENDPOINT
|
|
|
|
module = PCIE_EP
|
|
module-str = PCIE_EP
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
comment "PCIe Endpoint Drivers"
|
|
|
|
source "drivers/pcie/endpoint/Kconfig.iproc"
|
|
|
|
endif # PCIE_ENDPOINT
|