Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'merge-devicetree' of git://git.secretlab.ca/git/linux-2.6

* 'merge-devicetree' of git://git.secretlab.ca/git/linux-2.6:
of/dma: fix build breakage in ppc4xx adma driver

+3 -1
+3 -1
drivers/dma/ppc4xx/adma.c
··· 4257 4257 struct ppc440spe_adma_chan *chan, 4258 4258 int *initcode) 4259 4259 { 4260 + struct of_device *ofdev; 4260 4261 struct device_node *np; 4261 4262 int ret; 4262 4263 4263 - np = container_of(adev->dev, struct of_device, dev)->node; 4264 + ofdev = container_of(adev->dev, struct of_device, dev); 4265 + np = ofdev->dev.of_node; 4264 4266 if (adev->id != PPC440SPE_XOR_ID) { 4265 4267 adev->err_irq = irq_of_parse_and_map(np, 1); 4266 4268 if (adev->err_irq == NO_IRQ) {