mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders
@ 2014-07-11 12:29 Antony Pavlov
  2014-07-11 12:29 ` [PATCH 2/2] fixup! i2c: import SMBus stuff from linux Antony Pavlov
  2014-07-14  6:04 ` [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Antony Pavlov @ 2014-07-11 12:29 UTC (permalink / raw)
  To: barebox

---
 drivers/gpio/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 179c63d..6928fcb 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -67,7 +67,6 @@ config GPIO_ORION
 config GPIO_PCA953X
 	bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
 	depends on I2C
-	select I2C_SMBUS
 	help
 	  Say yes here to provide access to several register-oriented
 	  SMBus I/O expanders, made mostly by NXP or TI.  Compatible
-- 
2.0.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/2] fixup! i2c: import SMBus stuff from linux
  2014-07-11 12:29 [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Antony Pavlov
@ 2014-07-11 12:29 ` Antony Pavlov
  2014-07-14  6:04 ` [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Antony Pavlov @ 2014-07-11 12:29 UTC (permalink / raw)
  To: barebox

---
 drivers/i2c/Kconfig  | 3 ---
 drivers/i2c/Makefile | 3 +--
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
index 8b5ad50..0c6aec3 100644
--- a/drivers/i2c/Kconfig
+++ b/drivers/i2c/Kconfig
@@ -3,9 +3,6 @@ menuconfig I2C
 
 if I2C
 
-config I2C_SMBUS
-	bool
-
 source drivers/i2c/algos/Kconfig
 source drivers/i2c/busses/Kconfig
 
diff --git a/drivers/i2c/Makefile b/drivers/i2c/Makefile
index 0f8fe84..648d844 100644
--- a/drivers/i2c/Makefile
+++ b/drivers/i2c/Makefile
@@ -1,2 +1 @@
-obj-$(CONFIG_I2C) += i2c.o busses/ algos/
-obj-$(CONFIG_I2C_SMBUS) += i2c-smbus.o
+obj-$(CONFIG_I2C) += i2c.o i2c-smbus.o busses/ algos/
-- 
2.0.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders
  2014-07-11 12:29 [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Antony Pavlov
  2014-07-11 12:29 ` [PATCH 2/2] fixup! i2c: import SMBus stuff from linux Antony Pavlov
@ 2014-07-14  6:04 ` Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2014-07-14  6:04 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

On Fri, Jul 11, 2014 at 04:29:18PM +0400, Antony Pavlov wrote:
> ---
>  drivers/gpio/Kconfig | 1 -
>  1 file changed, 1 deletion(-)

Applied, or better: Fixed up.

Sascha

> 
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 179c63d..6928fcb 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -67,7 +67,6 @@ config GPIO_ORION
>  config GPIO_PCA953X
>  	bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
>  	depends on I2C
> -	select I2C_SMBUS
>  	help
>  	  Say yes here to provide access to several register-oriented
>  	  SMBus I/O expanders, made mostly by NXP or TI.  Compatible
> -- 
> 2.0.1
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-14  6:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-11 12:29 [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Antony Pavlov
2014-07-11 12:29 ` [PATCH 2/2] fixup! i2c: import SMBus stuff from linux Antony Pavlov
2014-07-14  6:04 ` [PATCH 1/2] fixup! gpio: add driver for PCA95[357]x, PCA9698, TCA64xx, and MAX7310 SMBus I/O expanders Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox