diff options
Diffstat (limited to 'drivers/thermal/qcom/tsens.c')
-rw-r--r-- | drivers/thermal/qcom/tsens.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/thermal/qcom/tsens.c b/drivers/thermal/qcom/tsens.c index 5f206e3c9198..cef86c3e3dd5 100644 --- a/drivers/thermal/qcom/tsens.c +++ b/drivers/thermal/qcom/tsens.c @@ -122,10 +122,10 @@ static int tsens_probe(struct platform_device *pdev) np = dev->of_node; id = of_match_node(tsens_table, np); - if (!id) - return -EINVAL; - - data = id->data; + if (id) + data = id->data; + else + data = &data_8960; if (data->num_sensors <= 0) { dev_err(dev, "invalid number of sensors\n"); |