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:
Szymon Dziok 2010-06-24 20:29:56 +00:00
parent 966052b328
commit 83d6ceb304

View file

@ -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;
}