From: Bernhard Rosenkraenzer <bero@arklinux.org>
To: akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: [PATCH] 2.6.13-rc1-mm1 unresolved symbols
Date: Fri, 1 Jul 2005 18:18:17 +0200 [thread overview]
Message-ID: <200507011818.17828.bero@arklinux.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 147 bytes --]
ipw2200 in 2.6.13-rc1-mm1 makes use of is_broadcast_ether_addr, which was
removed.
The attached patch restores that function for now.
LLaP
bero
[-- Attachment #2: 2.6.13-rc1-mm1-restore-is_broadcast_ether_addr.patch --]
[-- Type: text/x-diff, Size: 631 bytes --]
--- linux-2.6.13-rc1/include/net/ieee80211.h.ark 2005-07-01 17:46:22.000000000 +0200
+++ linux-2.6.13-rc1/include/net/ieee80211.h 2005-07-01 17:47:26.000000000 +0200
@@ -627,6 +627,11 @@
#define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x"
#define MAC_ARG(x) ((u8*)(x))[0],((u8*)(x))[1],((u8*)(x))[2],((u8*)(x))[3],((u8*)(x))[4],((u8*)(x))[5]
+extern inline int is_broadcast_ether_addr(const u8 *addr)
+{
+ return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&
+ (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
+}
#define CFG_IEEE80211_RESERVE_FCS (1<<0)
#define CFG_IEEE80211_COMPUTE_FCS (1<<1)
next reply other threads:[~2005-07-01 16:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-01 16:18 Bernhard Rosenkraenzer [this message]
2005-07-01 18:49 ` [PATCH] 2.6.13-rc1-mm1 unresolved symbols Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200507011818.17828.bero@arklinux.org \
--to=bero@arklinux.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.