-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 116875 b: refs/heads/master c: f514485 h: refs/heads/master i: 116873: bab9193 116871: 5adbe96 v: v3
- Loading branch information
Reinette Chatre
authored and
David Vrabel
committed
Sep 17, 2008
1 parent
d543e09
commit dc4d629
Showing
7 changed files
with
2,389 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: de520b8bd5525d33e6a6f36b297836125736bd2a | ||
refs/heads/master: f51448543f8e4871f0539435fce42a14044f5652 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* WiMedia Logical Link Control Protocol (WLP) | ||
* | ||
* Copyright (C) 2007 Intel Corporation | ||
* Reinette Chatre <reinette.chatre@intel.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License version | ||
* 2 as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
* | ||
* | ||
* Life cycle of WLP substack | ||
* | ||
* FIXME: Docs | ||
*/ | ||
|
||
#include <linux/module.h> | ||
|
||
static int __init wlp_subsys_init(void) | ||
{ | ||
return 0; | ||
} | ||
module_init(wlp_subsys_init); | ||
|
||
static void __exit wlp_subsys_exit(void) | ||
{ | ||
return; | ||
} | ||
module_exit(wlp_subsys_exit); | ||
|
||
MODULE_AUTHOR("Reinette Chatre <reinette.chatre@intel.com>"); | ||
MODULE_DESCRIPTION("WiMedia Logical Link Control Protocol (WLP)"); | ||
MODULE_LICENSE("GPL"); |
Oops, something went wrong.