From: <far...@us...> - 2006-10-18 07:29:15
|
Revision: 627 http://svn.sourceforge.net/hackndev/?rev=627&view=rev Author: farcaller Date: 2006-10-18 00:29:08 -0700 (Wed, 18 Oct 2006) Log Message: ----------- palmt3: TSC2101 PM patch Modified Paths: -------------- linux4palm/linux/trunk/drivers/soc/tsc2101.c Modified: linux4palm/linux/trunk/drivers/soc/tsc2101.c =================================================================== --- linux4palm/linux/trunk/drivers/soc/tsc2101.c 2006-10-18 05:28:46 UTC (rev 626) +++ linux4palm/linux/trunk/drivers/soc/tsc2101.c 2006-10-18 07:29:08 UTC (rev 627) @@ -849,8 +849,10 @@ .bus = &platform_bus_type, .probe = tsc2101_probe, .remove = __exit_p(tsc2101_remove), -// .suspend = tsc2101_suspend, -// .resume = tsc2101_resume, +#ifdef CONFIG_PM + .suspend = tsc2101_suspend, + .resume = tsc2101_resume, +#endif }; static int __init tsc2101_init(void) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |