Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 127308
b: refs/heads/master
c: b0c83ae
h: refs/heads/master
v: v3
  • Loading branch information
Inaky Perez-Gonzalez authored and Greg Kroah-Hartman committed Jan 7, 2009
1 parent 35e7954 commit 8470f71
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 617209ccf73b571953cf4c76519c65a5e52d15fd
refs/heads/master: b0c83ae1de01880075955c7224e751440688ec74
8 changes: 8 additions & 0 deletions trunk/Documentation/DocBook/networking.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@
!Enet/sunrpc/rpcb_clnt.c
!Enet/sunrpc/clnt.c
</sect1>
<sect1><title>WiMAX</title>
!Enet/wimax/op-msg.c
!Enet/wimax/op-reset.c
!Enet/wimax/op-rfkill.c
!Enet/wimax/stack.c
!Iinclude/net/wimax.h
!Iinclude/linux/wimax.h
</sect1>
</chapter>

<chapter id="netdev">
Expand Down
2 changes: 2 additions & 0 deletions trunk/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ source "net/mac80211/Kconfig"

endif # WIRELESS

source "net/wimax/Kconfig"

source "net/rfkill/Kconfig"
source "net/9p/Kconfig"

Expand Down
1 change: 1 addition & 0 deletions trunk/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ endif
ifeq ($(CONFIG_NET),y)
obj-$(CONFIG_SYSCTL) += sysctl_net.o
endif
obj-$(CONFIG_WIMAX) += wimax/
38 changes: 38 additions & 0 deletions trunk/net/wimax/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# WiMAX LAN device configuration
#

menuconfig WIMAX
tristate "WiMAX Wireless Broadband support"
help

Select to configure support for devices that provide
wireless broadband connectivity using the WiMAX protocol
(IEEE 802.16).

Please note that most of these devices require signing up
for a service plan with a provider.

The different WiMAX drivers can be enabled in the menu entry

Device Drivers > Network device support > WiMAX Wireless
Broadband devices

If unsure, it is safe to select M (module).

config WIMAX_DEBUG_LEVEL
int "WiMAX debug level"
depends on WIMAX
default 8
help

Select the maximum debug verbosity level to be compiled into
the WiMAX stack code.

By default, debug messages are disabled at runtime and can
be selectively enabled for different parts of the code using
the sysfs debug-levels file.

If set at zero, this will compile out all the debug code.

It is recommended that it is left at 8.
13 changes: 13 additions & 0 deletions trunk/net/wimax/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

obj-$(CONFIG_WIMAX) += wimax.o

wimax-y := \
id-table.o \
op-msg.o \
op-reset.o \
op-rfkill.o \
stack.o

wimax-$(CONFIG_DEBUG_FS) += debugfs.o


0 comments on commit 8470f71

Please sign in to comment.