We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305071e commit a79adc3Copy full SHA for a79adc3
drivers/dma/ti/edma.c
@@ -208,7 +208,6 @@ struct edma_desc {
208
struct edma_cc;
209
210
struct edma_tc {
211
- struct device_node *node;
212
u16 id;
213
};
214
@@ -2466,13 +2465,13 @@ static int edma_probe(struct platform_device *pdev)
2466
2465
if (ret || i == ecc->num_tc)
2467
break;
2468
2469
- ecc->tc_list[i].node = tc_args.np;
2470
ecc->tc_list[i].id = i;
2471
queue_priority_mapping[i][1] = tc_args.args[0];
2472
if (queue_priority_mapping[i][1] > lowest_priority) {
2473
lowest_priority = queue_priority_mapping[i][1];
2474
info->default_queue = i;
2475
}
+ of_node_put(tc_args.np);
2476
2477
2478
/* See if we have optional dma-channel-mask array */
0 commit comments