aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.4/0534-brcmvirt_gpio-Pass-device-structure-into-dma_zalloc_.patch
blob: ff70e34f068d38b68302da3f6fc627d66379b9c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From 4b40f23d8afba2fe227e515d0c793e95530350b2 Mon Sep 17 00:00:00 2001
From: popcornmix <popcornmix@gmail.com>
Date: Mon, 14 Nov 2016 17:46:54 +0000
Subject: [PATCH] brcmvirt_gpio: Pass device structure into dma_zalloc_coherent

---
 drivers/gpio/gpio-bcm-virt.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

--- a/drivers/gpio/gpio-bcm-virt.c
+++ b/drivers/gpio/gpio-bcm-virt.c
@@ -102,7 +102,7 @@ static int brcmvirt_gpio_probe(struct pl
 		goto out;
 	}
 
-	ucb->ts_base = dma_zalloc_coherent(NULL, PAGE_SIZE, &ucb->bus_addr, GFP_KERNEL);
+	ucb->ts_base = dma_zalloc_coherent(dev, PAGE_SIZE, &ucb->bus_addr, GFP_KERNEL);
 	if (!ucb->ts_base) {
 		pr_err("[%s]: failed to dma_alloc_coherent(%ld)\n",
 				__func__, PAGE_SIZE);
@@ -116,7 +116,7 @@ static int brcmvirt_gpio_probe(struct pl
 
 	if (err || gpiovirtbuf != 0) {
 		dev_warn(dev, "Failed to set gpiovirtbuf, trying to get err:%x\n", err);
-		dma_free_coherent(NULL, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
+		dma_free_coherent(dev, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
 		ucb->ts_base = 0;
 		ucb->bus_addr = 0;
 	}
@@ -168,7 +168,7 @@ static int brcmvirt_gpio_probe(struct pl
 	return 0;
 out:
 	if (ucb->bus_addr) {
-		dma_free_coherent(NULL, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
+		dma_free_coherent(dev, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
 		ucb->bus_addr = 0;
 		ucb->ts_base = NULL;
 	} else if (ucb->ts_base) {
@@ -180,12 +180,13 @@ out:
 
 static int brcmvirt_gpio_remove(struct platform_device *pdev)
 {
+	struct device *dev = &pdev->dev;
 	int err = 0;
 	struct brcmvirt_gpio *ucb = platform_get_drvdata(pdev);
 
 	gpiochip_remove(&ucb->gc);
 	if (ucb->bus_addr)
-		dma_free_coherent(NULL, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
+		dma_free_coherent(dev, PAGE_SIZE, ucb->ts_base, ucb->bus_addr);
 	else if (ucb->ts_base)
 		iounmap(ucb->ts_base);
 	return err;