1
0
Fork 0

hsi: nokia-modem: fix uninitialized device pointer

modem->device was never initialized. This resulted in logs such as:

[  241.386322] (NULL device *): CMT rst line change detected

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
hifive-unleashed-5.1
Aaro Koskinen 2015-01-04 19:34:13 +02:00 committed by Sebastian Reichel
parent 29169f8230
commit 67e9a2ce6e
1 changed files with 1 additions and 0 deletions

View File

@ -162,6 +162,7 @@ static int nokia_modem_probe(struct device *dev)
return -ENOMEM;
}
dev_set_drvdata(dev, modem);
modem->device = dev;
irq = irq_of_parse_and_map(np, 0);
if (!irq) {