diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2024-10-15 13:38:01 +0300 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2025-04-25 10:15:34 +0200 |
commit | 980d2c914cbe0af7c9239dacb89ae083a2094d83 (patch) | |
tree | f148aea3316fa4c84403341476c42bd6edfae101 | |
parent | 932518f6f8713d9a23b2ec3e0ebf5ab9e17af728 (diff) |
media: ccs: Don't complain about lack of quirks
Generally any deviance from the standard is handled via CCS static data
nowadays and so not having quirks is expected. Don't warn about it.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r-- | drivers/media/i2c/ccs/ccs-core.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c index 01744ebd3e061..27b94a399b175 100644 --- a/drivers/media/i2c/ccs/ccs-core.c +++ b/drivers/media/i2c/ccs/ccs-core.c @@ -2853,10 +2853,6 @@ static int ccs_identify_module(struct ccs_sensor *sensor) break; } - if (i >= ARRAY_SIZE(ccs_module_idents)) - dev_warn(&client->dev, - "no quirks for this module; let's hope it's fully compliant\n"); - dev_dbg(&client->dev, "the sensor is called %s\n", minfo->name); return 0; |