1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-12-23 21:46:48 +02:00

qi-fix-gta03-default-wlan-power.patch

Make sure WLAN module power is off by default - this controls
a P-Channel MOSFET that gates all the power there

Signed-off-by: Andy Green <andy@openmoko.com>
This commit is contained in:
Andy Green 2008-12-05 23:15:48 +00:00 committed by Andy Green
parent f9b0afbdb6
commit 74dc2cc01a

View File

@ -538,7 +538,8 @@ void port_init_gta03(void)
__REG(GPKPUD) = 0; /* all pullup and pulldown disabled */
__REG(GPKDAT) =
(1 << 2) /* deassert nMODEM_ON */
(1 << 2) | /* deassert nMODEM_ON */
(1 << 0) /* deassert nWLAN_POWERON */
;
/* ---------------------------- Port L ---------------------------- */