From patchwork Sat Jan 20 00:27:03 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Greear X-Patchwork-Id: 863876 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133; helo=bombadil.infradead.org; envelope-from=lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Y1nPbRiX"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zNdnM5J4Hz9s74 for ; Sat, 20 Jan 2018 11:27:33 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Subject:References: In-Reply-To:Message-Id:Date:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=fAar4nnNOfHgcEruVtOgBVLVqhO2C/4Ea7EOTTKZHgw=; b=Y1nPbRiXNx9/uj ZSFPfTqBbNes1Vxqs/zp9dmBDKcO3EyuZ12og5gbWTpSsP2zZE6s8vRfvkti4QCTJ1QVyhAYYZF1z OBoHRsNwSzSJoI0x3tqS04CpxCY6afhmzUcGtyNPZxOXEqKFlU8ycMEZuz1j6ZCCVFsFD0Ab81LCO +oOFa76XMrLQYTX0+a6jrB7nnWD+ThjqTpqz5SM6p4FEFp9caHpJhYE5SQsnQeZ727NjK2Rk/xG7Y Ya2xyTMO4B7TScCh3kEAylXs0DNbn0tz5zy68Ux0gGi7a0hCBrMSstNpN12hoMBxOF/+t/nc9xwnU GZhwOFj9Q/CNdbuTnGkw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.89 #1 (Red Hat Linux)) id 1ech0I-000808-S1; Sat, 20 Jan 2018 00:27:26 +0000 Received: from mail2.candelatech.com ([208.74.158.173]) by bombadil.infradead.org with esmtp (Exim 4.89 #1 (Red Hat Linux)) id 1ech0F-0007zL-WD for lede-dev@lists.infradead.org; Sat, 20 Jan 2018 00:27:25 +0000 Received: from ben-dt3.candelatech.com (firewall.candelatech.com [50.251.239.81]) by mail2.candelatech.com (Postfix) with ESMTP id 58FD040A339; Fri, 19 Jan 2018 16:27:07 -0800 (PST) From: greearb@candelatech.com To: lede-dev@lists.infradead.org Date: Fri, 19 Jan 2018 16:27:03 -0800 Message-Id: <1516408024-26655-2-git-send-email-greearb@candelatech.com> X-Mailer: git-send-email 2.4.11 In-Reply-To: <1516408024-26655-1-git-send-email-greearb@candelatech.com> References: <1516408024-26655-1-git-send-email-greearb@candelatech.com> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Subject: [LEDE-DEV] [PATCH-v2 2/3] ath10k-ct: Force loading mac80211 and ath modules. X-BeenThere: lede-dev@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ben Greear MIME-Version: 1.0 Sender: "Lede-dev" Errors-To: lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Ben Greear They are not automatically loaded on IPQ4019 (at least) machines for some reason. Signed-off-by: Ben Greear --- package/kernel/ath10k-ct/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/ath10k-ct/Makefile b/package/kernel/ath10k-ct/Makefile index 83d3a05..8f9a8dd 100644 --- a/package/kernel/ath10k-ct/Makefile +++ b/package/kernel/ath10k-ct/Makefile @@ -33,7 +33,7 @@ define KernelPackage/ath10k-ct FILES:=\ $(PKG_BUILD_DIR)/ath10k$(CT_KVER)/ath10k_pci.ko \ $(PKG_BUILD_DIR)/ath10k$(CT_KVER)/ath10k_core.ko - AUTOLOAD:=$(call AutoProbe,ath10k_pci) + AUTOLOAD:=$(call AutoProbe,mac80211 ath ath10k_pci) endef NOSTDINC_FLAGS = \