Commit 67e9a2ce authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Sebastian Reichel

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: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent 29169f82
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment