diff options
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/ab8500-core.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/mfd/ab8500-core.c b/drivers/mfd/ab8500-core.c index d9640a623ff4..e91b5b759004 100644 --- a/drivers/mfd/ab8500-core.c +++ b/drivers/mfd/ab8500-core.c | |||
@@ -103,8 +103,12 @@ static const int ab8500_irq_regoffset[AB8500_NUM_IRQ_REGS] = { | |||
103 | 103 | ||
104 | static int ab8500_get_chip_id(struct device *dev) | 104 | static int ab8500_get_chip_id(struct device *dev) |
105 | { | 105 | { |
106 | struct ab8500 *ab8500 = dev_get_drvdata(dev->parent); | 106 | struct ab8500 *ab8500; |
107 | return (int)ab8500->chip_id; | 107 | |
108 | if (!dev) | ||
109 | return -EINVAL; | ||
110 | ab8500 = dev_get_drvdata(dev->parent); | ||
111 | return ab8500 ? (int)ab8500->chip_id : -EINVAL; | ||
108 | } | 112 | } |
109 | 113 | ||
110 | static int set_register_interruptible(struct ab8500 *ab8500, u8 bank, | 114 | static int set_register_interruptible(struct ab8500 *ab8500, u8 bank, |