NxWM: Finishes touchscreen implementation; NuttX: Standardize touchscreen initialization interfaces for all boards

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4721 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-05-11 00:05:25 +00:00
parent 257ccf82a1
commit 940b9fedf1
7 changed files with 80 additions and 34 deletions
+2 -2
View File
@@ -143,10 +143,10 @@ int arch_tcinitialize(int minor)
/* Finally, initialize the touchscreen simulation on the X window */
ret = sim_tcinitialize(minor);
ret = arch_tcinitialize(minor);
if (ret < 0)
{
idbg("sim_tcinitialize failed: %d\n", ret);
idbg("arch_tcinitialize failed: %d\n", ret);
goto errout_with_nx;
}
return OK;