diff options
author | Ramona Bolboaca <ramona.bolboaca@analog.com> | 2022-10-31 12:51:27 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-11-23 19:44:04 +0000 |
commit | 75347e30f142521c140ba1f5011d4fb175c1406b (patch) | |
tree | 5b1ed9f3d8d53cd0b5f60d01bf6c71c12a99fe4a /drivers/iio/accel | |
parent | 9b4901528f57fe88c7e0a0bfdf69d8edcaad46fb (diff) | |
download | lwn-75347e30f142521c140ba1f5011d4fb175c1406b.tar.gz lwn-75347e30f142521c140ba1f5011d4fb175c1406b.zip |
drivers: iio: accel: Use warning if invalid device id is detected
Use warning instead of failing driver probe if invalid device id is
detected for ADXL355 device.
Signed-off-by: Ramona Bolboaca <ramona.bolboaca@analog.com>
Link: https://lore.kernel.org/r/20221031105129.47740-2-ramona.bolboaca@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/accel')
-rw-r--r-- | drivers/iio/accel/adxl355_core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/iio/accel/adxl355_core.c b/drivers/iio/accel/adxl355_core.c index 4bc648eac8b2..dd08253d66d0 100644 --- a/drivers/iio/accel/adxl355_core.c +++ b/drivers/iio/accel/adxl355_core.c @@ -262,10 +262,8 @@ static int adxl355_setup(struct adxl355_data *data) if (ret) return ret; - if (regval != ADXL355_PARTID_VAL) { - dev_err(data->dev, "Invalid DEV ID 0x%02x\n", regval); - return -ENODEV; - } + if (regval != ADXL355_PARTID_VAL) + dev_warn(data->dev, "Invalid DEV ID 0x%02x\n", regval); /* * Perform a software reset to make sure the device is in a consistent |