From 5b6b5d6f0b33b8281d34aee2ddcb43fb9fa5b10b Mon Sep 17 00:00:00 2001 From: Mikhail Kshevetskiy Date: Wed, 11 Feb 2026 21:22:22 +0300 Subject: [PATCH] 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 --- drivers/net/airoha/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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