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

Commit 3e6b02d9 authored by Dan Williams's avatar Dan Williams Committed by Grant Likely
Browse files

of/dma: fix build breakage in ppc4xx adma driver



Convert ppc4xx adma driver to use new node pointer location

Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
Acked-by: default avatarAnatolij Gustschin <agust@denx.de>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 123f94f2
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -4257,10 +4257,12 @@ static int ppc440spe_adma_setup_irqs(struct ppc440spe_adma_device *adev,
				     struct ppc440spe_adma_chan *chan,
				     struct ppc440spe_adma_chan *chan,
				     int *initcode)
				     int *initcode)
{
{
	struct of_device *ofdev;
	struct device_node *np;
	struct device_node *np;
	int ret;
	int ret;


	np = container_of(adev->dev, struct of_device, dev)->node;
	ofdev = container_of(adev->dev, struct of_device, dev);
	np = ofdev->dev.of_node;
	if (adev->id != PPC440SPE_XOR_ID) {
	if (adev->id != PPC440SPE_XOR_ID) {
		adev->err_irq = irq_of_parse_and_map(np, 1);
		adev->err_irq = irq_of_parse_and_map(np, 1);
		if (adev->err_irq == NO_IRQ) {
		if (adev->err_irq == NO_IRQ) {