aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee80211/softmac/ieee80211softmac_event.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2006-01-12 15:12:59 -0500
committerJohn W. Linville <linville@tuxdriver.com>2006-03-22 22:16:56 -0500
commit4855d25b1ef9d74aeb29c2e46f0d6a289922eab6 (patch)
tree6b4ea7a169f3ce0e10a11ec2a8c46c75f9e04818 /net/ieee80211/softmac/ieee80211softmac_event.c
parentb2b9b6518eac7b4e9abf649ef4273c02f1a5276b (diff)
[PATCH] softmac: add copyright and license headers
add copyright and license headers to all softmac files Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211/softmac/ieee80211softmac_event.c')
-rw-r--r--net/ieee80211/softmac/ieee80211softmac_event.c30
1 files changed, 27 insertions, 3 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_event.c b/net/ieee80211/softmac/ieee80211softmac_event.c
index b640a58a2687..0ed8e304ecf3 100644
--- a/net/ieee80211/softmac/ieee80211softmac_event.c
+++ b/net/ieee80211/softmac/ieee80211softmac_event.c
@@ -1,9 +1,33 @@
1#include "ieee80211softmac_priv.h"
2
3/* 1/*
4 * Event system 2 * Event system
5 * Also see comments in public header file 3 * Also see comments in public header file and longer explanation below.
4 *
5 * Copyright (c) 2005 Johannes Berg <johannes@sipsolutions.net>
6 * Joseph Jezak <josejx@gentoo.org>
7 * Larry Finger <Larry.Finger@lwfinger.net>
8 * Danny van Dyk <kugelfang@gentoo.org>
9 * Michael Buesch <mbuesch@freenet.de>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
6 * 23 *
24 * The full GNU General Public License is included in this distribution in the
25 * file called COPYING.
26 */
27
28#include "ieee80211softmac_priv.h"
29
30/*
7 * Each event has associated to it 31 * Each event has associated to it
8 * - an event type (see constants in public header) 32 * - an event type (see constants in public header)
9 * - an event context (see below) 33 * - an event context (see below)