Fix warnings from the smatch tool
atomisp_cmd.c:2649
  atomisp_set_array_res() warn:
  unsigned 'config->width' is never less than zero.
atomisp_cmd.c:2650
  atomisp_set_array_res() warn:
  unsigned 'config->height' is never less than zero.
Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                         struct atomisp_resolution  *config)
 {
        dev_dbg(asd->isp->dev, ">%s start\n", __func__);
-       if (config == NULL || config->width < 0
-               || config->height < 0) {
+       if (!config) {
                dev_err(asd->isp->dev, "Set sensor array size is not valid\n");
                return -EINVAL;
        }