dmaengine: ioatdma: constify dca_ops structures
The dca_ops structure is never modified, so declare it as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Acked-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
@@ -321,7 +321,8 @@ EXPORT_SYMBOL_GPL(dca_get_tag);
|
||||
* @ops - pointer to struct of dca operation function pointers
|
||||
* @priv_size - size of extra mem to be added for provider's needs
|
||||
*/
|
||||
struct dca_provider *alloc_dca_provider(struct dca_ops *ops, int priv_size)
|
||||
struct dca_provider *alloc_dca_provider(const struct dca_ops *ops,
|
||||
int priv_size)
|
||||
{
|
||||
struct dca_provider *dca;
|
||||
int alloc_size;
|
||||
|
Reference in New Issue
Block a user