projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4388ca
)
mfd: 88pm800: Fix potential NULL pdata dereference
author
Chao Xie
<chao.xie@marvell.com>
Mon, 19 Aug 2013 01:27:54 +0000
(21:27 -0400)
committer
Samuel Ortiz
<sameo@linux.intel.com>
Mon, 2 Sep 2013 08:59:57 +0000
(10:59 +0200)
User pass platform data to device, and platform data may be
NULL. Add the check for pdata.
Signed-off-by: Chao Xie <chao.xie@marvell.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/88pm800.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/88pm800.c
b/drivers/mfd/88pm800.c
index cd9e17471232ed76b091c420a71a1146fdd4ba97..a65447d65605fe7d7539082322a70cceae9c18c7 100644
(file)
--- a/
drivers/mfd/88pm800.c
+++ b/
drivers/mfd/88pm800.c
@@
-333,9
+333,11
@@
static int device_rtc_init(struct pm80x_chip *chip,
{
int ret;
- rtc_devs[0].platform_data = pdata->rtc;
- rtc_devs[0].pdata_size =
- pdata->rtc ? sizeof(struct pm80x_rtc_pdata) : 0;
+ if (pdata) {
+ rtc_devs[0].platform_data = pdata->rtc;
+ rtc_devs[0].pdata_size =
+ pdata->rtc ? sizeof(struct pm80x_rtc_pdata) : 0;
+ }
ret = mfd_add_devices(chip->dev, 0, &rtc_devs[0],
ARRAY_SIZE(rtc_devs), NULL, 0, NULL);
if (ret) {
@@
-578,7
+580,7
@@
static int pm800_probe(struct i2c_client *client,
goto err_device_init;
}
- if (pdata->plat_config)
+ if (pdata
&& pdata
->plat_config)
pdata->plat_config(chip, pdata);
return 0;