Browse Source

fsi: scom: Fix NULL dereference

The chardev conversion forgot to copy the fsi_dev,
silly mistake, compounded by a testing mistake on
my side, this specific driver wasn't being tested
properly.

Fixes: d8f4587655f9 "fsi: scom: Convert to use the new chardev"
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Benjamin Herrenschmidt 7 years ago
parent
commit
aa1221b258
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/fsi/fsi-scom.c

+ 1 - 0
drivers/fsi/fsi-scom.c

@@ -598,6 +598,7 @@ static int scom_probe(struct device *dev)
 		kfree(scom);
 		return -ENODEV;
 	}
+	scom->fsi_dev = fsi_dev;
 
 	/* Create chardev for userspace access */
 	scom->dev.type = &fsi_cdev_type;