mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00: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:
parent
9a26578c81
commit
ceac0cf209
1 changed files with 0 additions and 14 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue