d36125654e
* Utilize DT_HAS_<COMPAT>_ENABLED for devicetree based drivers
* Move to using 'select SPI' instead of 'depends on'
(see commit df81fef944
for
more details)
Signed-off-by: Kumar Gala <galak@kernel.org>
16 lines
266 B
Plaintext
16 lines
266 B
Plaintext
# Copyright (c) 2019 Antmicro
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig ETH_LITEETH
|
|
bool "LiteEth Ethernet core driver"
|
|
default y
|
|
depends on DT_HAS_LITEX_ETH0_ENABLED
|
|
|
|
if ETH_LITEETH
|
|
|
|
config ETH_LITEETH_0
|
|
bool "LiteEth Ethernet port 0"
|
|
default y
|
|
|
|
endif
|