diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-04-22 04:33:33 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-06-11 22:19:19 -0400 |
commit | 8552bb4f16800d5ebc176a2cf5f2aa55b22731ea (patch) | |
tree | 307a72f913ce3e887c0ae3d5a0962039ff81db93 | |
parent | ff0e0f4f568e8d7593e0035c0c58067bcaf4ab07 (diff) |
dma: of: Remove check on always true condition
Both of_dma_nbcells field of the of_dma_controller and the args_count field of
the dma_spec are initialized by parsing the #dma-cells attribute of their device
tree node. So if the device tree nodes of a DMA controller and the dma_spec
match this means that of_dma_nbcells and args_count will also match. So the
second test in the of_dma_find_controller loop is redundant because given the
first test yields true the second test will also yield true. So we can safely
remove the test whether of_dma_nbcells matches args_count. Since this was the
last user of the of_dma_nbcells field we can remove it altogether.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/of-dma.c | 14 | ||||
-rw-r--r-- | include/linux/of_dma.h | 1 |
2 files changed, 1 insertions, 14 deletions
diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c index 268cc8ab34e8..75334bdd2c56 100644 --- a/drivers/dma/of-dma.c +++ b/drivers/dma/of-dma.c | |||
@@ -35,8 +35,7 @@ static struct of_dma *of_dma_find_controller(struct of_phandle_args *dma_spec) | |||
35 | struct of_dma *ofdma; | 35 | struct of_dma *ofdma; |
36 | 36 | ||
37 | list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers) | 37 | list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers) |
38 | if ((ofdma->of_node == dma_spec->np) && | 38 | if (ofdma->of_node == dma_spec->np) |
39 | (ofdma->of_dma_nbcells == dma_spec->args_count)) | ||
40 | return ofdma; | 39 | return ofdma; |
41 | 40 | ||
42 | pr_debug("%s: can't find DMA controller %s\n", __func__, | 41 | pr_debug("%s: can't find DMA controller %s\n", __func__, |
@@ -64,7 +63,6 @@ int of_dma_controller_register(struct device_node *np, | |||
64 | void *data) | 63 | void *data) |
65 | { | 64 | { |
66 | struct of_dma *ofdma; | 65 | struct of_dma *ofdma; |
67 | const __be32 *prop; | ||
68 | 66 | ||
69 | if (!np || !of_dma_xlate) { | 67 | if (!np || !of_dma_xlate) { |
70 | pr_err("%s: not enough information provided\n", __func__); | 68 | pr_err("%s: not enough information provided\n", __func__); |
@@ -75,17 +73,7 @@ int of_dma_controller_register(struct device_node *np, | |||
75 | if (!ofdma) | 73 | if (!ofdma) |
76 | return -ENOMEM; | 74 | return -ENOMEM; |
77 | 75 | ||
78 | prop = of_get_property(np, "#dma-cells", NULL); | ||
79 | if (!prop) { | ||
80 | pr_err("%s: #dma-cells property is missing\n", | ||
81 | __func__); | ||
82 | kfree(ofdma); | ||
83 | return -EINVAL; | ||
84 | } | ||
85 | |||
86 | |||
87 | ofdma->of_node = np; | 76 | ofdma->of_node = np; |
88 | ofdma->of_dma_nbcells = be32_to_cpup(prop); | ||
89 | ofdma->of_dma_xlate = of_dma_xlate; | 77 | ofdma->of_dma_xlate = of_dma_xlate; |
90 | ofdma->of_dma_data = data; | 78 | ofdma->of_dma_data = data; |
91 | 79 | ||
diff --git a/include/linux/of_dma.h b/include/linux/of_dma.h index 364dda734877..ae36298ba076 100644 --- a/include/linux/of_dma.h +++ b/include/linux/of_dma.h | |||
@@ -21,7 +21,6 @@ struct device_node; | |||
21 | struct of_dma { | 21 | struct of_dma { |
22 | struct list_head of_dma_controllers; | 22 | struct list_head of_dma_controllers; |
23 | struct device_node *of_node; | 23 | struct device_node *of_node; |
24 | int of_dma_nbcells; | ||
25 | struct dma_chan *(*of_dma_xlate) | 24 | struct dma_chan *(*of_dma_xlate) |
26 | (struct of_phandle_args *, struct of_dma *); | 25 | (struct of_phandle_args *, struct of_dma *); |
27 | void *of_dma_data; | 26 | void *of_dma_data; |