mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
ASoC: mchp-pdmc: avoid casting to/from void pointer
Do not cast to and from void pointer. There is no need for this. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/20230301113807.24036-7-claudiu.beznea@microchip.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
51124a3030
commit
cb72b29cd5
@@ -783,7 +783,7 @@ static struct snd_soc_dai_driver mchp_pdmc_dai = {
|
||||
/* PDMC interrupt handler */
|
||||
static irqreturn_t mchp_pdmc_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct mchp_pdmc *dd = (struct mchp_pdmc *)dev_id;
|
||||
struct mchp_pdmc *dd = dev_id;
|
||||
u32 isr, msr, pending;
|
||||
irqreturn_t ret = IRQ_NONE;
|
||||
|
||||
@@ -1077,7 +1077,7 @@ static int mchp_pdmc_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
ret = devm_request_irq(dev, irq, mchp_pdmc_interrupt, 0,
|
||||
dev_name(&pdev->dev), (void *)dd);
|
||||
dev_name(&pdev->dev), dd);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "can't register ISR for IRQ %u (ret=%i)\n",
|
||||
irq, ret);
|
||||
|
||||
Reference in New Issue
Block a user