summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorWolfram Sang <w.sang@pengutronix.de>2011-04-29 13:30:02 (GMT)
committerBen Dooks <ben-linux@fluff.org>2011-05-12 23:10:36 (GMT)
commit9ddabb055d73c63037878bb9346e52c7f2e07e96 (patch)
tree029448dcc4dbaabefe57dcf6b74bb467ee7b0405 /drivers
parentca1376d10810bc2c20c8d0821a9ee04ca2507c01 (diff)
downloadlinux-fsl-qoriq-9ddabb055d73c63037878bb9346e52c7f2e07e96.tar.xz
i2c: pnx: Fix crash due to wrong init of timer->data
alg_data is already a pointer which must be passed directly. Reported-by: Dieter Ripp <ripp@systecnet.com> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Cc: Russell King <linux@arm.linux.org.uk> Cc: Ben Dooks <ben-i2c@fluff.org> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/busses/i2c-pnx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-pnx.c b/drivers/i2c/busses/i2c-pnx.c
index a97e3fe..04be9f8 100644
--- a/drivers/i2c/busses/i2c-pnx.c
+++ b/drivers/i2c/busses/i2c-pnx.c
@@ -65,7 +65,7 @@ static inline void i2c_pnx_arm_timer(struct i2c_pnx_algo_data *alg_data)
jiffies, expires);
timer->expires = jiffies + expires;
- timer->data = (unsigned long)&alg_data;
+ timer->data = (unsigned long)alg_data;
add_timer(timer);
}