|
@@ -37,6 +37,14 @@ static const struct of_device_id st_press_of_match[] = {
|
|
|
.compatible = "st,lps22hb-press",
|
|
|
.data = LPS22HB_PRESS_DEV_NAME,
|
|
|
},
|
|
|
+ {
|
|
|
+ .compatible = "st,lps33hw",
|
|
|
+ .data = LPS33HW_PRESS_DEV_NAME,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .compatible = "st,lps35hw",
|
|
|
+ .data = LPS35HW_PRESS_DEV_NAME,
|
|
|
+ },
|
|
|
{},
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(of, st_press_of_match);
|
|
@@ -59,6 +67,8 @@ static const struct i2c_device_id st_press_id_table[] = {
|
|
|
{ LPS25H_PRESS_DEV_NAME, LPS25H },
|
|
|
{ LPS331AP_PRESS_DEV_NAME, LPS331AP },
|
|
|
{ LPS22HB_PRESS_DEV_NAME, LPS22HB },
|
|
|
+ { LPS33HW_PRESS_DEV_NAME, LPS33HW },
|
|
|
+ { LPS35HW_PRESS_DEV_NAME, LPS35HW },
|
|
|
{},
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(i2c, st_press_id_table);
|