From: <mar...@us...> - 2007-05-24 22:55:58
|
Revision: 990 http://svn.sourceforge.net/hackndev/?rev=990&view=rev Author: marex_z71 Date: 2007-05-24 15:55:56 -0700 (Thu, 24 May 2007) Log Message: ----------- PalmT5: Patch by snua12, improves suspend. Thanx Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmt5/palmt5_pm.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmt5/palmt5_pm.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmt5/palmt5_pm.c 2007-05-22 19:06:24 UTC (rev 989) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmt5/palmt5_pm.c 2007-05-24 22:55:56 UTC (rev 990) @@ -42,11 +42,11 @@ {} /* Turn off LCD power */ -/* SET_PALMTT5_GPIO(LCD_POWER,0);*/ + SET_PALMT5_GPIO(LCD_POWER,0); /* Turn screen off */ -/* SET_PALMTT5_GPIO(BL_POWER,0);*/ + SET_PALMT5_GPIO(BL_POWER,0); /* Turn off USB power */ -/* SET_PALMTT5_GPIO(USB_POWER,0);*/ + SET_PALMT5_GPIO(USB_POWER,0); /* disable GPIO reset - DO NOT REMOVE!!!!!!!! Palm totally hangs on reset without disabling GPIO reset during sleep */ @@ -68,11 +68,11 @@ /* Here are all of special to resume Palm T5 */ /* Turn on LCD power */ -/* SET_PALMTT5_GPIO(LCD_POWER,1);*/ + SET_PALMT5_GPIO(LCD_POWER,1); /* Turn screen on */ -/* SET_PALMTT5_GPIO(BL_POWER,1);*/ + SET_PALMT5_GPIO(BL_POWER,1); /* Turn on USB power */ -/* SET_PALMTT5_GPIO(USB_POWER,1);*/ + SET_PALMT5_GPIO(USB_POWER,1); return 0; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |