diff options
| author | Cong Ding <dinggnu@gmail.com> | 2013-02-14 05:16:10 -0500 |
|---|---|---|
| committer | Vinod Koul <vinod.koul@intel.com> | 2013-02-14 08:41:46 -0500 |
| commit | e68b1130dfbb834a4a028df01133591aeb59d241 (patch) | |
| tree | 364877c35c453e27590b1b43508ceb0f1928c942 | |
| parent | 877e86f28385407f05c5aa4e397d4ccb3233f01a (diff) | |
dma: of-dma.c: fix memory leakage
The memory allocated to ofdma might be a leakage when error occurs.
Signed-off-by: Cong Ding <dinggnu@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
| -rw-r--r-- | drivers/dma/of-dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c index 59631b2c4666..583e50e3d47c 100644 --- a/drivers/dma/of-dma.c +++ b/drivers/dma/of-dma.c | |||
| @@ -107,6 +107,7 @@ int of_dma_controller_register(struct device_node *np, | |||
| 107 | if (!nbcells) { | 107 | if (!nbcells) { |
| 108 | pr_err("%s: #dma-cells property is missing or invalid\n", | 108 | pr_err("%s: #dma-cells property is missing or invalid\n", |
| 109 | __func__); | 109 | __func__); |
| 110 | kfree(ofdma); | ||
| 110 | return -EINVAL; | 111 | return -EINVAL; |
| 111 | } | 112 | } |
| 112 | 113 | ||
