Hi,
I noticed that my board-overo.c file (for Gumsix Overo Fire TI OMAP
3530 device) is missing the ads7846_vaux_control.
Is this a recent change that will impact the responsiveness of the
touchscreen controller?
Best regards,
Elvis
/*
* This enable(1)/disable(0) the voltage for TS: uses twl4030 calls
*/
static int ads7846_vaux_control(int vaux_cntrl)
{
int ret = 0;
/* FIXME use regulator calls */
#ifdef CONFIG_TWL4030_CORE
/* check for return value of ldo_use: if success it returns 0 */
if (vaux_cntrl == VAUX_ENABLE) {
if (ret != twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
ENABLE_VAUX3_DEDICATED, TWL4030_VAUX3_DEDICATED))
return -EIO;
if (ret != twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
ENABLE_VAUX3_DEV_GRP, TWL4030_VAUX3_DEV_GRP))
return -EIO;
} else if (vaux_cntrl == VAUX_DISABLE) {
if (ret != twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
0x00, TWL4030_VAUX3_DEDICATED))
return -EIO;
if (ret != twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
0x00, TWL4030_VAUX3_DEV_GRP))
return -EIO;
}
#else
ret = -EIO;
#endif
return ret;
}
On May 20, 2009, at 7:37 AM, Elvis Dowson wrote:
Hi,
I just noticed that after incorporating the SR reflex and the
recent patches from 187 onwards (using git format patch master on
the pm branch),
my ADS7846 touchscreen controller's response has become modified.
Any possible links or is there some dependency between the SR reflex
patches and the pm patches for the ADS7846 touchscreen controller?
Best regards,
Elvis
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html