On Wed, Mar 09, 2011 at 03:11:39PM +0100, Henrik Rydberg wrote: > > - wm831x_ts->pressure = pdata && pdata->pressure; > > + if (pdata) > > + wm831x_ts->pressure = pdata->pressure; > > + else > > + wm831x_ts->pressure = true; > wm831x_ts->pressure = !pdata || pdata->pressure; > should suffice. It does have some substantial drawbacks in terms of legibility, though. -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html