Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304701
b: refs/heads/master
c: 247e9cf
h: refs/heads/master
i:
  304699: 3c86b6f
v: v3
  • Loading branch information
Sage Ahn authored and Greg Kroah-Hartman committed May 15, 2012
1 parent 650c8d0 commit d4d6d8c
Show file tree
Hide file tree
Showing 23 changed files with 4,622 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: 93c66ee1186ad31f767f1b7cbd0ecaef7375b8ed
refs/heads/master: 247e9cffdce024fec5f55f76a8592f2fa8b3aa7b
2 changes: 2 additions & 0 deletions trunk/drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,6 @@ source "drivers/staging/ozwpan/Kconfig"

source "drivers/staging/ipack/Kconfig"

source "drivers/staging/gdm72xx/Kconfig"

endif # STAGING
1 change: 1 addition & 0 deletions trunk/drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ obj-$(CONFIG_ANDROID) += android/
obj-$(CONFIG_PHONE) += telephony/
obj-$(CONFIG_RAMSTER) += ramster/
obj-$(CONFIG_USB_WPAN_HCD) += ozwpan/
obj-$(CONFIG_WIMAX_GDM72XX) += gdm72xx/
45 changes: 45 additions & 0 deletions trunk/drivers/staging/gdm72xx/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#
# GCT GDM72xx WiMAX driver configuration
#

menuconfig WIMAX_GDM72XX
tristate "GCT GDM72xx WiMAX support"
help
Support for the GCT GDM72xx WiMAX chip

if WIMAX_GDM72XX

config WIMAX_GDM72XX_QOS
bool "Enable QoS support"
default n

config WIMAX_GDM72XX_K_MODE
bool "Enable K mode"
default n

config WIMAX_GDM72XX_WIMAX2
bool "Enable WIMAX2 support"
default n

choice
prompt "Select interface"

config WIMAX_GDM72XX_USB
bool "USB interface"
depends on USB

config WIMAX_GDM72XX_SDIO
bool "SDIO interface"
depends on MMC

endchoice

if WIMAX_GDM72XX_USB

config WIMAX_GDM72XX_USB_PM
bool "Enable power managerment support"
default n

endif # WIMAX_GDM72XX_USB

endif # WIMAX_GDM72XX
6 changes: 6 additions & 0 deletions trunk/drivers/staging/gdm72xx/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
obj-$(CONFIG_WIMAX_GDM72XX) := gdmwm.o

gdmwm-y += gdm_wimax.o netlink_k.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_QOS) += gdm_qos.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_SDIO) += gdm_sdio.o sdio_boot.o
gdmwm-$(CONFIG_WIMAX_GDM72XX_USB) += gdm_usb.o usb_boot.o
5 changes: 5 additions & 0 deletions trunk/drivers/staging/gdm72xx/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
TODO:
- Replace kernel_thread with kthread in gdm_usb.c
- Replace hard-coded firmware paths with request_firmware in
sdio_boot.c and usb_boot.c
- Clean up coding style to meet kernel standard.
Loading

0 comments on commit d4d6d8c

Please sign in to comment.