Title: [4036] trunk/drivers/i2c/busses/Kconfig: Task[#2424] Default bit banging i2c PINs in bf561 is different.
Revision
4036
Author
sonicz
Date
2007-12-12 18:55:59 -0600 (Wed, 12 Dec 2007)

Log Message

Task[#2424] Default bit banging i2c PINs in bf561 is different.
As Bill Fassler mentioned in his email.
SDA=>GPIO_1 SCL=>GPIO_0

Diffstat

 Kconfig |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

Modified Paths

Diff

Modified: trunk/drivers/i2c/busses/Kconfig (4035 => 4036)


--- trunk/drivers/i2c/busses/Kconfig	2007-12-13 00:46:03 UTC (rev 4035)
+++ trunk/drivers/i2c/busses/Kconfig	2007-12-13 00:55:59 UTC (rev 4036)
@@ -105,14 +105,16 @@
 	range 0 15 if (BF533 || BF532 || BF531)
 	range 0 47 if (BF534 || BF536 || BF537)
 	range 0 47 if BF561
-	default 2
+	default 2 if !BF561
+	default 1 if BF561
 
 config I2C_BLACKFIN_GPIO_SCL
 	int "SCL GPIO pin number"
 	range 0 15 if (BF533 || BF532 || BF531)
 	range 0 47 if (BF534 || BF536 || BF537)
 	range 0 47 if BF561
-	default 3
+	default 3 if !BF561
+	default 0 if BF561
 endmenu
 
 config I2C_BLACKFIN_GPIO_CYCLE_DELAY
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to