From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1E6C5C433DB for ; Thu, 28 Jan 2021 16:35:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E391C64E0D for ; Thu, 28 Jan 2021 16:35:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232586AbhA1QfU (ORCPT ); Thu, 28 Jan 2021 11:35:20 -0500 Received: from Galois.linutronix.de ([193.142.43.55]:36032 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232252AbhA1Qeh (ORCPT ); Thu, 28 Jan 2021 11:34:37 -0500 From: Kurt Kanzenbach DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1611851631; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=P8ixzyR91Be1yG8uiE1awFzihSb2ZydJiJadRIzRs1o=; b=0vIUnVuACfWEkRY+AFWxRJgsvqnZGQD1d/Ndfljhs0bFgDhG55vwJotMNy/swaIGQ4CL4o 7I4KxmljT4+zk6kA7ky7IC+9fFPblCkbpmdURmSt+vpG0mN7hwJbOHQpiUmxzxL+bc1OSB JXk5eDBkCoKbZng366CRnBP+8K9yACgrZF7lcas5TPwgTT9UQcFPD7IHzqdW1eF5f1fEPV KAoIi/Skiw1K53nZ/BYrrd1KTF5DnuqL70gwRryJZsyAJ/7XVP2LlhCS9QGLXiST3ih+TF 3kCwZWukR+sR9jbd1G4jqurYdj3kQJnfcHb7zWwhuGFOBQuLjio7cuvofdht1Q== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1611851631; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=P8ixzyR91Be1yG8uiE1awFzihSb2ZydJiJadRIzRs1o=; b=REPJj6ANDwiiMov5yV0x3l/8ad83L+OM0SbeFB7Gk3wRG5TPouUJBWo7GwURft8z/1pUUd l2zKDmkql4ayY0Aw== To: Andrew Lunn , Vivien Didelot , Florian Fainelli , Vladimir Oltean Cc: "David S. Miller" , Jakub Kicinski , netdev@vger.kernel.org, Kurt Kanzenbach , Randy Dunlap Subject: [PATCH net-next] net: dsa: hellcreek: Add missing TAPRIO dependency Date: Thu, 28 Jan 2021 17:33:38 +0100 Message-Id: <20210128163338.22665-1-kurt@linutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add missing dependency to TAPRIO to avoid build failures such as: |ERROR: modpost: "taprio_offload_get" [drivers/net/dsa/hirschmann/hellcreek_sw.ko] undefined! |ERROR: modpost: "taprio_offload_free" [drivers/net/dsa/hirschmann/hellcreek_sw.ko] undefined! Fixes: 24dfc6eb39b2 ("net: dsa: hellcreek: Add TAPRIO offloading support") Reported-by: Randy Dunlap Signed-off-by: Kurt Kanzenbach --- drivers/net/dsa/hirschmann/Kconfig | 1 + 1 file changed, 1 insertion(+) Note: It's not against net, because the fixed commit is not in net tree, yet. diff --git a/drivers/net/dsa/hirschmann/Kconfig b/drivers/net/dsa/hirschmann/Kconfig index e01191107a4b..9ea2c643f8f8 100644 --- a/drivers/net/dsa/hirschmann/Kconfig +++ b/drivers/net/dsa/hirschmann/Kconfig @@ -5,6 +5,7 @@ config NET_DSA_HIRSCHMANN_HELLCREEK depends on NET_DSA depends on PTP_1588_CLOCK depends on LEDS_CLASS + depends on NET_SCH_TAPRIO select NET_DSA_TAG_HELLCREEK help This driver adds support for Hirschmann Hellcreek TSN switches. -- 2.20.1