dma: mv_xor: rename mv_xor_platform_data to mv_xor_channel_data

mv_xor_platform_data used to be the platform_data structure associated
to the 'mv_xor' driver. This driver no longer exists, and this data
structure really contains the properties of each XOR channel part of a
given XOR engine. Therefore 'struct mv_xor_channel_data' is a more
appropriate name.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni
2012-10-30 11:56:26 +01:00
parent 2ccc469cfe
commit e39f6ec1f9
3 changed files with 17 additions and 17 deletions

View File

@@ -12,14 +12,14 @@
#define MV_XOR_SHARED_NAME "mv_xor_shared"
struct mv_xor_platform_data {
struct mv_xor_channel_data {
int hw_id;
dma_cap_mask_t cap_mask;
size_t pool_size;
};
struct mv_xor_shared_platform_data {
struct mv_xor_platform_data *channels;
struct mv_xor_channel_data *channels;
};
#endif