synaptics: add a small delay in syn_get_data() for PB Vibe. Touchpad doesn't work when build with EABI without it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27117 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
966052b328
commit
83d6ceb304
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ static void syn_set_data(int val)
|
|||
static inline int syn_get_data(void)
|
||||
{
|
||||
DATA_CL;
|
||||
#if defined(PBELL_VIBE500) /* for EABI (touchpad doesn't work without it) */
|
||||
udelay(0);
|
||||
#endif
|
||||
return DATA;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue