#include <linux/delay.h>
 #include <linux/i2c.h>
 #include <linux/module.h>
-#include <linux/of_device.h>
+#include <linux/mod_devicetable.h>
 
 #include <asm/unaligned.h>
 
        return ms5611_remove(i2c_get_clientdata(client));
 }
 
-#if defined(CONFIG_OF)
 static const struct of_device_id ms5611_i2c_matches[] = {
        { .compatible = "meas,ms5611" },
        { .compatible = "meas,ms5607" },
        { }
 };
 MODULE_DEVICE_TABLE(of, ms5611_i2c_matches);
-#endif
 
 static const struct i2c_device_id ms5611_id[] = {
        { "ms5611", MS5611 },
 static struct i2c_driver ms5611_driver = {
        .driver = {
                .name = "ms5611",
-               .of_match_table = of_match_ptr(ms5611_i2c_matches)
+               .of_match_table = ms5611_i2c_matches,
        },
        .id_table = ms5611_id,
        .probe = ms5611_i2c_probe,
 
 #include <linux/delay.h>
 #include <linux/module.h>
 #include <linux/spi/spi.h>
-#include <linux/of_device.h>
+#include <linux/mod_devicetable.h>
 
 #include <asm/unaligned.h>
 
        return ms5611_remove(spi_get_drvdata(spi));
 }
 
-#if defined(CONFIG_OF)
 static const struct of_device_id ms5611_spi_matches[] = {
        { .compatible = "meas,ms5611" },
        { .compatible = "meas,ms5607" },
        { }
 };
 MODULE_DEVICE_TABLE(of, ms5611_spi_matches);
-#endif
 
 static const struct spi_device_id ms5611_id[] = {
        { "ms5611", MS5611 },
 static struct spi_driver ms5611_driver = {
        .driver = {
                .name = "ms5611",
-               .of_match_table = of_match_ptr(ms5611_spi_matches)
+               .of_match_table = ms5611_spi_matches
        },
        .id_table = ms5611_id,
        .probe = ms5611_spi_probe,