mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 02:24:24 +02:00
ASoC: codecs: tlv320dac33: Remove unused struct tlv320dac33_platform_data and header file tlv320dac33-plat.h
Remove the tlv320dac33_platform_data struct and header file tlv320dac33-plat.h as they are not used anywhere in the kernel or outside this driver. Signed-off-by: Alex Tran <alex.t.tran@gmail.com> Message-ID: <20250901184008.1249535-3-alex.t.tran@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
9e5eb8b49f
commit
06aba2126b
|
|
@ -1,21 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Platform header for Texas Instruments TLV320DAC33 codec driver
|
||||
*
|
||||
* Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
|
||||
*
|
||||
* Copyright: (C) 2009 Nokia Corporation
|
||||
*/
|
||||
|
||||
#ifndef __TLV320DAC33_PLAT_H
|
||||
#define __TLV320DAC33_PLAT_H
|
||||
|
||||
struct tlv320dac33_platform_data {
|
||||
int power_gpio;
|
||||
int mode1_latency; /* latency caused by the i2c writes in us */
|
||||
int auto_fifo_config; /* FIFO config based on the period size */
|
||||
int keep_bclk; /* Keep the BCLK running in FIFO modes */
|
||||
u8 burst_bclkdiv;
|
||||
};
|
||||
|
||||
#endif /* __TLV320DAC33_PLAT_H */
|
||||
|
|
@ -24,7 +24,6 @@
|
|||
#include <sound/initval.h>
|
||||
#include <sound/tlv.h>
|
||||
|
||||
#include <sound/tlv320dac33-plat.h>
|
||||
#include "tlv320dac33.h"
|
||||
|
||||
/*
|
||||
|
|
@ -1462,16 +1461,9 @@ static struct snd_soc_dai_driver dac33_dai = {
|
|||
|
||||
static int dac33_i2c_probe(struct i2c_client *client)
|
||||
{
|
||||
struct tlv320dac33_platform_data *pdata;
|
||||
struct tlv320dac33_priv *dac33;
|
||||
int ret, i;
|
||||
|
||||
if (client->dev.platform_data == NULL) {
|
||||
dev_err(&client->dev, "Platform data not set\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
pdata = client->dev.platform_data;
|
||||
|
||||
dac33 = devm_kzalloc(&client->dev, sizeof(struct tlv320dac33_priv),
|
||||
GFP_KERNEL);
|
||||
if (dac33 == NULL)
|
||||
|
|
@ -1488,10 +1480,6 @@ static int dac33_i2c_probe(struct i2c_client *client)
|
|||
|
||||
i2c_set_clientdata(client, dac33);
|
||||
|
||||
dac33->power_gpio = pdata->power_gpio;
|
||||
dac33->burst_bclkdiv = pdata->burst_bclkdiv;
|
||||
dac33->keep_bclk = pdata->keep_bclk;
|
||||
dac33->mode1_latency = pdata->mode1_latency;
|
||||
if (!dac33->mode1_latency)
|
||||
dac33->mode1_latency = 10000; /* 10ms */
|
||||
dac33->irq = client->irq;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user