F:     Documentation/devicetree/bindings/sound/ti,tlv320adcx140.yaml
 F:     include/sound/tas2*.h
 F:     include/sound/tlv320*.h
-F:     include/sound/tpa6130a2-plat.h
 F:     sound/pci/hda/tas2781_hda_i2c.c
 F:     sound/soc/codecs/pcm1681.c
 F:     sound/soc/codecs/pcm1789*.*
 
+++ /dev/null
-/* SPDX-License-Identifier: GPL-2.0-only */
-/*
- * TPA6130A2 driver platform header
- *
- * Copyright (C) Nokia Corporation
- *
- * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
- */
-
-#ifndef TPA6130A2_PLAT_H
-#define TPA6130A2_PLAT_H
-
-struct tpa6130a2_platform_data {
-       int power_gpio;
-};
-
-#endif
 
 #include <linux/slab.h>
 #include <sound/soc.h>
 #include <sound/tlv.h>
-#include <sound/tpa6130a2-plat.h>
 
 #include "tpa6130a2.h"
 
        .cache_type = REGCACHE_RBTREE,
 };
 
-static const struct i2c_device_id tpa6130a2_id[] = {
-       { "tpa6130a2", TPA6130A2 },
-       { "tpa6140a2", TPA6140A2 },
-       { }
-};
-MODULE_DEVICE_TABLE(i2c, tpa6130a2_id);
-
 static int tpa6130a2_probe(struct i2c_client *client)
 {
        struct device *dev;
        struct tpa6130a2_data *data;
-       struct tpa6130a2_platform_data *pdata = client->dev.platform_data;
        struct device_node *np = client->dev.of_node;
        const char *regulator;
        unsigned int version;
        if (IS_ERR(data->regmap))
                return PTR_ERR(data->regmap);
 
-       if (pdata) {
-               data->power_gpio = pdata->power_gpio;
-       } else if (np) {
+       if (np) {
                data->power_gpio = of_get_named_gpio(np, "power-gpio", 0);
        } else {
                dev_err(dev, "Platform data not set\n");
                .of_match_table = of_match_ptr(tpa6130a2_of_match),
        },
        .probe = tpa6130a2_probe,
-       .id_table = tpa6130a2_id,
 };
 
 module_i2c_driver(tpa6130a2_i2c_driver);