Commit 47146eb8 authored by Markezana, William's avatar Markezana, William Committed by Jonathan Cameron

iio: ms5637 Add Measurement Specialties explicit MS5805 and MS5837 support

Signed-off-by: default avatarWilliam Markezana <william.markezana@meas-spec.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent f26ab1aa
/* /*
* ms5637.c - Support for Measurement-Specialties ms5637 and ms8607 * ms5637.c - Support for Measurement-Specialties MS5637, MS5805
* pressure & temperature sensor * MS5837 and MS8607 pressure & temperature sensor
* *
* Copyright (c) 2015 Measurement-Specialties * Copyright (c) 2015 Measurement-Specialties
* *
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
* Datasheet: * Datasheet:
* http://www.meas-spec.com/downloads/MS5637-02BA03.pdf * http://www.meas-spec.com/downloads/MS5637-02BA03.pdf
* Datasheet: * Datasheet:
* http://www.meas-spec.com/downloads/MS5805-02BA01.pdf
* Datasheet:
* http://www.meas-spec.com/downloads/MS5837-30BA.pdf
* Datasheet:
* http://www.meas-spec.com/downloads/MS8607-02BA01.pdf * http://www.meas-spec.com/downloads/MS8607-02BA01.pdf
*/ */
...@@ -170,7 +174,9 @@ static int ms5637_probe(struct i2c_client *client, ...@@ -170,7 +174,9 @@ static int ms5637_probe(struct i2c_client *client,
static const struct i2c_device_id ms5637_id[] = { static const struct i2c_device_id ms5637_id[] = {
{"ms5637", 0}, {"ms5637", 0},
{"ms8607-temppressure", 1}, {"ms5805", 0},
{"ms5837", 0},
{"ms8607-temppressure", 0},
{} {}
}; };
MODULE_DEVICE_TABLE(i2c, ms5637_id); MODULE_DEVICE_TABLE(i2c, ms5637_id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment