Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 303fd71d authored by Lothar Waßmann's avatar Lothar Waßmann Committed by Vinod Koul
Browse files

dma: of: make error message more meaningful by adding the node name

parent d9a6c8f5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -160,7 +160,8 @@ struct dma_chan *of_dma_request_slave_channel(struct device_node *np,

	count = of_property_count_strings(np, "dma-names");
	if (count < 0) {
		pr_err("%s: dma-names property missing or empty\n", __func__);
		pr_err("%s: dma-names property of node '%s' missing or empty\n",
			__func__, np->full_name);
		return NULL;
	}