|
From: <z7...@us...> - 2007-01-18 08:10:40
|
Revision: 761
http://svn.sourceforge.net/hackndev/?rev=761&view=rev
Author: z72ka
Date: 2007-01-18 00:10:36 -0800 (Thu, 18 Jan 2007)
Log Message:
-----------
Palmz72: Added suspend/resume support
Modified Paths:
--------------
linux4palm/linux/trunk/kernel/power/console.c
Modified: linux4palm/linux/trunk/kernel/power/console.c
===================================================================
--- linux4palm/linux/trunk/kernel/power/console.c 2007-01-18 02:39:55 UTC (rev 760)
+++ linux4palm/linux/trunk/kernel/power/console.c 2007-01-18 08:10:36 UTC (rev 761)
@@ -21,6 +21,7 @@
* trying to suspend. I'm not sure how we're supposed to get around it,
* other than this. The suspend console is ugly, anyhow. ;-)
*/
+#ifndef CONFIG_MACH_PALMZ72
#ifndef CONFIG_MACH_XSCALE_PALMLD
#ifndef CONFIG_MACH_T3XSCALE
@@ -46,11 +47,13 @@
kmsg_redirect = SUSPEND_CONSOLE;
#endif
#endif
+#endif
return 0;
}
void pm_restore_console(void)
{
+#ifndef CONFIG_MACH_PALMZ72
#ifndef CONFIG_MACH_XSCALE_PALMLD
#ifndef CONFIG_MACH_T3XSCALE
acquire_console_sem();
@@ -59,6 +62,7 @@
kmsg_redirect = orig_kmsg;
#endif
#endif
+#endif
return;
}
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|