mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
of/dma: fix build breakage in ppc4xx adma driver
Fixes build error caused by the OF device_node pointer being moved into struct device Signed-off-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
c8a4d0fd2a
commit
05c02542c2
1 changed files with 2 additions and 2 deletions
|
@ -4394,7 +4394,7 @@ static void ppc440spe_adma_release_irqs(struct ppc440spe_adma_device *adev,
|
||||||
static int __devinit ppc440spe_adma_probe(struct of_device *ofdev,
|
static int __devinit ppc440spe_adma_probe(struct of_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct device_node *np = ofdev->node;
|
struct device_node *np = ofdev->dev.of_node;
|
||||||
struct resource res;
|
struct resource res;
|
||||||
struct ppc440spe_adma_device *adev;
|
struct ppc440spe_adma_device *adev;
|
||||||
struct ppc440spe_adma_chan *chan;
|
struct ppc440spe_adma_chan *chan;
|
||||||
|
@ -4626,7 +4626,7 @@ out:
|
||||||
static int __devexit ppc440spe_adma_remove(struct of_device *ofdev)
|
static int __devexit ppc440spe_adma_remove(struct of_device *ofdev)
|
||||||
{
|
{
|
||||||
struct ppc440spe_adma_device *adev = dev_get_drvdata(&ofdev->dev);
|
struct ppc440spe_adma_device *adev = dev_get_drvdata(&ofdev->dev);
|
||||||
struct device_node *np = ofdev->node;
|
struct device_node *np = ofdev->dev.of_node;
|
||||||
struct resource res;
|
struct resource res;
|
||||||
struct dma_chan *chan, *_chan;
|
struct dma_chan *chan, *_chan;
|
||||||
struct ppc_dma_chan_ref *ref, *_ref;
|
struct ppc_dma_chan_ref *ref, *_ref;
|
||||||
|
|
Loading…
Reference in a new issue