mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 23:38:21 +07:00
net: ethernet: ti: am65-cpts: fix build
It's possible to have build configuration which will force PTP_1588_CLOCK=m
and so TI_K3_AM65_CPTS=m while still have TI_K3_AM65_CPSW_NUSS=y. This will
cause build failures:
aarch64-linux-gnu-ld: ../drivers/net/ethernet/ti/am65-cpsw-nuss.o: in function `am65_cpsw_init_cpts':
../drivers/net/ethernet/ti/am65-cpsw-nuss.c:1685: undefined reference to `am65_cpts_create'
aarch64-linux-gnu-ld: ../drivers/net/ethernet/ti/am65-cpsw-nuss.c:1685:(.text+0x2e20):
relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `am65_cpts_create'
Fix it by adding dependencies from CPTS in TI_K3_AM65_CPSW_NUSS as below:
config TI_K3_AM65_CPSW_NUSS
...
depends on TI_K3_AM65_CPTS || !TI_K3_AM65_CPTS
Note. This will create below dependencies and for NFS boot + CPTS all of them
have to be built-in.
PTP_1588_CLOCK -> TI_K3_AM65_CPTS -> TI_K3_AM65_CPSW_NUSS
While here, clean up TI_K3_AM65_CPTS definition.
Fixes: b1f66a5bee
("net: ethernet: ti: am65-cpsw-nuss: enable packet timestamping support")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Reported-by: Anders Roxell <anders.roxell@linaro.org>
Tested-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f989d546a2
commit
01241aa000
@ -100,7 +100,7 @@ config TI_K3_AM65_CPSW_NUSS
|
|||||||
depends on ARCH_K3 && OF && TI_K3_UDMA_GLUE_LAYER
|
depends on ARCH_K3 && OF && TI_K3_UDMA_GLUE_LAYER
|
||||||
select TI_DAVINCI_MDIO
|
select TI_DAVINCI_MDIO
|
||||||
imply PHY_TI_GMII_SEL
|
imply PHY_TI_GMII_SEL
|
||||||
imply TI_AM65_CPTS
|
depends on TI_K3_AM65_CPTS || !TI_K3_AM65_CPTS
|
||||||
help
|
help
|
||||||
This driver supports TI K3 AM654/J721E CPSW2G Ethernet SubSystem.
|
This driver supports TI K3 AM654/J721E CPSW2G Ethernet SubSystem.
|
||||||
The two-port Gigabit Ethernet MAC (MCU_CPSW0) subsystem provides
|
The two-port Gigabit Ethernet MAC (MCU_CPSW0) subsystem provides
|
||||||
@ -113,9 +113,8 @@ config TI_K3_AM65_CPSW_NUSS
|
|||||||
|
|
||||||
config TI_K3_AM65_CPTS
|
config TI_K3_AM65_CPTS
|
||||||
tristate "TI K3 AM65x CPTS"
|
tristate "TI K3 AM65x CPTS"
|
||||||
depends on ARCH_K3 && OF && PTP_1588_CLOCK
|
depends on ARCH_K3 && OF
|
||||||
depends on PTP_1588_CLOCK
|
depends on PTP_1588_CLOCK
|
||||||
select NET_PTP_CLASSIFY
|
|
||||||
help
|
help
|
||||||
Say y here to support the TI K3 AM65x CPTS with 1588 features such as
|
Say y here to support the TI K3 AM65x CPTS with 1588 features such as
|
||||||
PTP hardware clock for each CPTS device and network packets
|
PTP hardware clock for each CPTS device and network packets
|
||||||
|
Loading…
Reference in New Issue
Block a user