dmaengine: dma-jz4780: Let the core do the device node validation
[platform/kernel/linux-rpi.git] / drivers / dma / dma-jz4780.c
index 9ce0a38..4064391 100644 (file)
@@ -1,13 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Ingenic JZ4780 DMA controller
  *
  * Copyright (c) 2015 Imagination Technologies
  * Author: Alex Smith <alex@alex-smith.me.uk>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation;  either version 2 of the  License, or (at your
- * option) any later version.
  */
 
 #include <linux/clk.h>
@@ -160,7 +156,6 @@ struct jz4780_dma_dev {
 };
 
 struct jz4780_dma_filter_data {
-       struct device_node *of_node;
        uint32_t transfer_type;
        int channel;
 };
@@ -765,8 +760,6 @@ static bool jz4780_dma_filter_fn(struct dma_chan *chan, void *param)
        struct jz4780_dma_dev *jzdma = jz4780_dma_chan_parent(jzchan);
        struct jz4780_dma_filter_data *data = param;
 
-       if (jzdma->dma_device.dev->of_node != data->of_node)
-               return false;
 
        if (data->channel > -1) {
                if (data->channel != jzchan->id)
@@ -790,7 +783,6 @@ static struct dma_chan *jz4780_of_dma_xlate(struct of_phandle_args *dma_spec,
        if (dma_spec->args_count != 2)
                return NULL;
 
-       data.of_node = ofdma->of_node;
        data.transfer_type = dma_spec->args[0];
        data.channel = dma_spec->args[1];
 
@@ -815,7 +807,8 @@ static struct dma_chan *jz4780_of_dma_xlate(struct of_phandle_args *dma_spec,
                return dma_get_slave_channel(
                        &jzdma->chan[data.channel].vchan.chan);
        } else {
-               return dma_request_channel(mask, jz4780_dma_filter_fn, &data);
+               return __dma_request_channel(&mask, jz4780_dma_filter_fn, &data,
+                                            ofdma->of_node);
        }
 }