From patchwork Tue Oct 6 21:07:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "John W. Linville" X-Patchwork-Id: 52029 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n96LJ04G031798 for ; Tue, 6 Oct 2009 21:19:00 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933234AbZJFVQn (ORCPT ); Tue, 6 Oct 2009 17:16:43 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758326AbZJFVQn (ORCPT ); Tue, 6 Oct 2009 17:16:43 -0400 Received: from charlotte.tuxdriver.com ([70.61.120.58]:42494 "EHLO smtp.tuxdriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758225AbZJFVQl (ORCPT ); Tue, 6 Oct 2009 17:16:41 -0400 Received: from uucp by smtp.tuxdriver.com with local-rmail (Exim 4.63) (envelope-from ) id 1MvHO8-0002I1-I8; Tue, 06 Oct 2009 17:16:04 -0400 Received: from linville-t400.local (linville-t400.local [127.0.0.1]) by linville-t400.local (8.14.3/8.14.3) with ESMTP id n96L7KqG014831; Tue, 6 Oct 2009 17:07:20 -0400 Received: (from linville@localhost) by linville-t400.local (8.14.3/8.14.3/Submit) id n96L7KfR014829; Tue, 6 Oct 2009 17:07:20 -0400 From: "John W. Linville" To: linux-wireless@vger.kernel.org Cc: "John W. Linville" Subject: [PATCH 4/4] cfg80211: fix compile error from missing ethtool.h Date: Tue, 6 Oct 2009 17:07:20 -0400 Message-Id: <1254863240-14780-4-git-send-email-linville@tuxdriver.com> X-Mailer: git-send-email 1.6.2.5 In-Reply-To: <1254863240-14780-1-git-send-email-linville@tuxdriver.com> References: <1254863240-14780-1-git-send-email-linville@tuxdriver.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 6f4862b..14915ea 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -18,6 +18,7 @@ #include #include #include +#include #include /* remove once we remove the wext stuff */ diff --git a/net/wireless/ethtool.h b/net/wireless/ethtool.h index 70cbee1..695ecad 100644 --- a/net/wireless/ethtool.h +++ b/net/wireless/ethtool.h @@ -1,8 +1,6 @@ #ifndef __CFG80211_ETHTOOL__ #define __CFG80211_ETHTOOL__ -#include - extern const struct ethtool_ops cfg80211_ethtool_ops; #endif /* __CFG80211_ETHTOOL__ */