Title: [4089] trunk/sound/blackfin/ad73311.c: Fix BUG [#3795] gpio_direction_output() API is not compatitable with GENERIC_GPIO API interface
Revision
4089
Author
hennerich
Date
2008-01-10 06:03:43 -0600 (Thu, 10 Jan 2008)

Log Message

Fix BUG [#3795] gpio_direction_output() API is not compatitable with GENERIC_GPIO API interface

Diffstat

 ad73311.c |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)

Modified Paths

Diff

Modified: trunk/sound/blackfin/ad73311.c (4088 => 4089)


--- trunk/sound/blackfin/ad73311.c	2008-01-10 11:57:13 UTC (rev 4088)
+++ trunk/sound/blackfin/ad73311.c	2008-01-10 12:03:43 UTC (rev 4089)
@@ -575,8 +575,7 @@
 		return -EBUSY;
 	}
 
-	gpio_direction_output(GPIO_SE);
-	gpio_set_value(GPIO_SE, 0);
+	gpio_direction_output(GPIO_SE, 0);
 
 	if ((err = snd_ad73311_configure()) < 0)
 		return -EFAULT;
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to