Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 385f83f8 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Vinod Koul
Browse files

dmaengine: Remove Renesas Audio DMAC peri peri platform data



Commit 3cd44dcd ("dmaengine: remove Renesas Audio DMAC peri peri")
forgot to remove the header file with the platform data definitions.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Acked-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 5835aa86
Loading
Loading
Loading
Loading
+0 −34
Original line number Diff line number Diff line
/*
 * This is for Renesas R-Car Audio-DMAC-peri-peri.
 *
 * Copyright (C) 2014 Renesas Electronics Corporation
 * Copyright (C) 2014 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
 *
 * This file is based on the include/linux/sh_dma.h
 *
 * Header for the new SH dmaengine driver
 *
 * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef SH_AUDMAPP_H
#define SH_AUDMAPP_H

#include <linux/dmaengine.h>

struct audmapp_slave_config {
	int		slave_id;
	dma_addr_t	src;
	dma_addr_t	dst;
	u32		chcr;
};

struct audmapp_pdata {
	struct audmapp_slave_config *slave;
	int slave_num;
};

#endif /* SH_AUDMAPP_H */