mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 15:49:42 -04:00
staging:iio:adxrs450: Don't spam the bootlog
Don't spam the bootlog with the devices part id and serial number. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
committed by
Jonathan Cameron
parent
9a26578c81
commit
ceac0cf209
@@ -231,20 +231,6 @@ static int adxrs450_initial_setup(struct iio_dev *indio_dev)
|
||||
dev_err(&st->us->dev, "The device is not in normal status!\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
ret = adxrs450_spi_read_reg_16(indio_dev, ADXRS450_PID1, &data);
|
||||
if (ret)
|
||||
return ret;
|
||||
dev_info(&st->us->dev, "The Part ID is 0x%x\n", data);
|
||||
|
||||
ret = adxrs450_spi_read_reg_16(indio_dev, ADXRS450_SNL, &data);
|
||||
if (ret)
|
||||
return ret;
|
||||
t = data;
|
||||
ret = adxrs450_spi_read_reg_16(indio_dev, ADXRS450_SNH, &data);
|
||||
if (ret)
|
||||
return ret;
|
||||
t |= data << 16;
|
||||
dev_info(&st->us->dev, "The Serial Number is 0x%x\n", t);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user