Kconfig 941 B

123456789101112131415161718192021222324252627282930
  1. config CW1200
  2. tristate "CW1200 WLAN support"
  3. depends on MAC80211 && CFG80211
  4. help
  5. This is a driver for the ST-E CW1100 & CW1200 WLAN chipsets.
  6. This option just enables the driver core, see below for
  7. specific bus support.
  8. if CW1200
  9. config CW1200_WLAN_SDIO
  10. tristate "Support SDIO platforms"
  11. depends on CW1200 && MMC
  12. help
  13. Enable support for the CW1200 connected via an SDIO bus.
  14. By default this driver only supports the Sagrad SG901-1091/1098 EVK
  15. and similar designs that utilize a hardware reset circuit. To
  16. support different CW1200 SDIO designs you will need to override
  17. the default platform data by calling cw1200_sdio_set_platform_data()
  18. in your board setup file.
  19. config CW1200_WLAN_SPI
  20. tristate "Support SPI platforms"
  21. depends on CW1200 && SPI
  22. help
  23. Enables support for the CW1200 connected via a SPI bus. You will
  24. need to add appropriate platform data glue in your board setup
  25. file.
  26. endif