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=-18.8 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,USER_AGENT_GIT 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 DC72FC07E96 for ; Thu, 15 Jul 2021 16:02:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A604B613CF for ; Thu, 15 Jul 2021 16:02:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238484AbhGOQFe (ORCPT ); Thu, 15 Jul 2021 12:05:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45938 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232659AbhGOQFd (ORCPT ); Thu, 15 Jul 2021 12:05:33 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 97DCDC06175F for ; Thu, 15 Jul 2021 09:02:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Content-Type:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-To:Resent-Cc: Resent-Message-ID:In-Reply-To:References; bh=hDDGwCDioZtgGRkIt7/A0y9XUW6Pv5lRrYrHOTCn2Io=; t=1626364960; x=1627574560; b=nE/TGvJLKxrN47PPyOo+awFkEipKa8xaY7ejS1o9zth85dOr9OlnJ8rFq5v0suDlfQjc5Kp/Ik+ XJ4nqQgjhbDR4CHeZ0LAuW8VqizJUOPN2a1JL5oSnct+m2/DxBgh7NHnlY8DIcoy0GtDtqx3GwMtR Njy8Q8yb8Cg5r+cutnOPR/5CocMsl0qhL9uj8Z3gCmTjliExEEQ2ScLgTAGUancstSj1fUejVvxeq jD0as6WmVUNnaTc54qYjN4jbyT5J5inOgSu5h0wox/WfCiwVw4Og4+pYL8+yaeKj8QjaznOtk/Yr6 z7Kb4filwZOZMbntpXX436PSMckQI83JjUoA==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.94.2) (envelope-from ) id 1m43os-002iCe-Ij; Thu, 15 Jul 2021 18:02:38 +0200 From: Johannes Berg To: linux-wireless@vger.kernel.org Cc: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= , Johannes Berg Subject: [PATCH] mac80211: include Date: Thu, 15 Jul 2021 18:02:35 +0200 Message-Id: <20210715180234.512d64dee655.Ia51c29a9fb1e651e06bc00eabec90974103d333e@changeid> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: Johannes Berg This is needed for the rbtree, and we shouldn't just rely on it getting included somewhere implicitly. Include it explicitly. Signed-off-by: Johannes Berg --- net/mac80211/ieee80211_i.h | 1 + 1 file changed, 1 insertion(+) diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 22549b95d1aa..1c14cecf9813 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include -- 2.31.1