RE: [PATCH 14/15] omap: zoom: add WLAN device

2010-07-07 Thread Ghorai, Sukumar
...@lists.infradead.org; li...@arm.linux.org.uk; Chikkature Rajashekar, Madhusudhan; Luciano Coelho; a...@linux- foundation.org; San Mehat; Ben-cohen, Ohad Subject: [PATCH 14/15] omap: zoom: add WLAN device From: Ohad Ben-Cohen oh...@ti.com Add WLAN platform device and control functions (power

Re: [PATCH 14/15] omap: zoom: add WLAN device

2010-07-06 Thread Roger Quadros
Hi Ohad, On 07/06/2010 03:37 AM, ext Ohad Ben-Cohen wrote: From: Ohad Ben-Cohenoh...@ti.com Add WLAN platform device and control functions (power and virtual card detect) in order to allow software to control the embedded SDIO WLAN device which resides on the ZOOM board (TI's wl1271 device).

Re: [PATCH 14/15] omap: zoom: add WLAN device

2010-07-06 Thread Ohad Ben-Cohen
Hi Roger, On Tue, Jul 6, 2010 at 3:33 PM, Roger Quadros roger.quad...@nokia.com wrote: +static void omap_zoom_wlan_power(bool enable) +{ +       int val = enable ? 1 : 0; + +       pr_info(%s: set power %d\n, __func__, val); + +       gpio_set_value(OMAP_ZOOM_WLAN_PMENA_GPIO, val); +}

[PATCH 14/15] omap: zoom: add WLAN device

2010-07-05 Thread Ohad Ben-Cohen
From: Ohad Ben-Cohen oh...@ti.com Add WLAN platform device and control functions (power and virtual card detect) in order to allow software to control the embedded SDIO WLAN device which resides on the ZOOM board (TI's wl1271 device). Based on Android's WLAN control functions by San Mehat