From: Inha Song Date: Fri, 7 Aug 2015 01:35:59 +0000 (+0900) Subject: mfd: wm8994: Fix NULL pointer exception on missing pdata X-Git-Tag: omap-for-v4.3/fixes-rc1~93^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd30acc889f586cecdea0d7f401f3dc80752b41e;p=pandora-kernel.git mfd: wm8994: Fix NULL pointer exception on missing pdata If we use the dev_get_platdata, pdata can be NULL in DT environments. Actually, NULL pointer exception is occurs with error messages like this: [ 1.226583] Unable to handle kernel NULL pointer dereference at virtual address 00000044 [ 1.467910] [] (wm8994_irq_init) from [] (wm8994_i2c_probe+0x684/0x858) [ 1.476241] [] (wm8994_i2c_probe) from [] (i2c_device_probe+0x11c/0x17c) In wm8994-core, we already checked whether platform data is NULL and set the wm8994->pdata to platform data if platform data is not NULL. So, we can use wm8994->pdata instead of platform data. Signed-off-by: Inha Song Acked-by: Charles Keepax Signed-off-by: Lee Jones --- Reading git-diff-tree failed