Kevin Liu 90182317a9 mfd: Fix max8925 irq control bit incorrect setting
In max8925_irq_sync_unlock(), irq control bit is set at the same time.
Zero means enabling irq, and one means disabling irq.

The original code is:
	irq_chg[0] &= irq_data->enable;

It should be changed to:
	irq_chg[0] &= ~irq_data->enable;

Otherwise, irq control bit is mess.

Signed-off-by: Kevin Liu <kliu5@marvell.com>
Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
2010-09-29 10:14:53 +02:00
..
2010-08-12 11:28:10 +02:00
2010-08-12 11:28:00 +02:00
2010-08-12 11:28:00 +02:00
2010-08-12 11:28:12 +02:00
2010-05-28 01:38:02 +02:00
2010-08-12 11:27:59 +02:00
2009-09-17 09:46:59 +02:00
2010-03-07 22:16:57 +01:00