From: Mikhail Kshevetskiy Date: Wed, 11 Feb 2026 18:22:22 +0000 (+0300) Subject: net: airoha: pcs: improve/fix building rules X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b6b5d6f0b33b8281d34aee2ddcb43fb9fa5b10b;p=thirdparty%2Fu-boot.git net: airoha: pcs: improve/fix building rules pcs-airoha-common.o should not build unconditionally, also make building rules looks better. Signed-off-by: Mikhail Kshevetskiy --- diff --git a/drivers/net/airoha/Makefile b/drivers/net/airoha/Makefile index 27f2969434c..81fd26cf813 100644 --- a/drivers/net/airoha/Makefile +++ b/drivers/net/airoha/Makefile @@ -1,6 +1,4 @@ # SPDX-License-Identifier: GPL-2.0 -obj-y += pcs-airoha-common.o -ifdef CONFIG_PCS_AIROHA_AN7581 -obj-y += pcs-an7581.o -endif +obj-$(CONFIG_PCS_AIROHA) += pcs-airoha-common.o +obj-$(CONFIG_PCS_AIROHA_AN7581) += pcs-an7581.o