mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
c02cecb92e
Platform data for device drivers should be defined in include/linux/platform_data/*.h, not in the architecture and platform specific directories. This moves such data out of the orion include directories Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Andrew Lunn <andrew@lunn.ch> Cc: Vinod Koul <vinod.koul@intel.com> Cc: Dan Williams <djbw@fb.com> Cc: Bryan Wu <bryan.wu@canonical.com> Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Chris Ball <cjb@laptop.org> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Liam Girdwood <lrg@ti.com> Cc: Jaroslav Kysela <perex@perex.cz> Cc: Takashi Iwai <tiwai@suse.de>
25 lines
427 B
C
25 lines
427 B
C
/*
|
|
* arch/arm/plat-orion/include/plat/mv_xor.h
|
|
*
|
|
* Marvell XOR platform device data definition file.
|
|
*/
|
|
|
|
#ifndef __PLAT_MV_XOR_H
|
|
#define __PLAT_MV_XOR_H
|
|
|
|
#include <linux/dmaengine.h>
|
|
#include <linux/mbus.h>
|
|
|
|
#define MV_XOR_SHARED_NAME "mv_xor_shared"
|
|
#define MV_XOR_NAME "mv_xor"
|
|
|
|
struct mv_xor_platform_data {
|
|
struct platform_device *shared;
|
|
int hw_id;
|
|
dma_cap_mask_t cap_mask;
|
|
size_t pool_size;
|
|
};
|
|
|
|
|
|
#endif
|