The driver depends on the external clock frequency. Add a sanity check for
the frequency, by returning an error from probe if it's zero.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
                return -EINVAL;
        }
 
+       if (!sensor->hwcfg.ext_clk) {
+               dev_err(&client->dev, "cannot work with xclk frequency 0\n");
+               return -EINVAL;
+       }
+
        sensor->reset = devm_gpiod_get_optional(&client->dev, "reset",
                                                GPIOD_OUT_HIGH);
        if (IS_ERR(sensor->reset))