Re: [PATCH resend 0/2] I2C: sis630: add sis964 support

2012-12-28 Thread Amaury Decrême
On Tue, Dec 18, 2012 at 12:51:05PM +0100, Jean Delvare wrote: > Hi Amaury, > > On Wed, 29 Aug 2012 03:35:13 +0200, Amaury Decrême wrote: > > I reviewed these two patches 2 months ago, but did not hear back from > you since then. Do you plan to resubmit these patches with th

[PATCH 2/2] I2C: SIS630: Cosmetics

2012-08-05 Thread Amaury Decrême
This patch replaces SMBus hex values by human readable constants and correct some checkpatch -f errors. Signed-off-by: Amaury Decrême --- drivers/i2c/busses/i2c-sis630.c | 311 ++- 1 files changed, 178 insertions(+), 133 deletions(-) diff --git a/drivers

[PATCH 1/2] I2C: SIS630: Add SiS964 support

2012-08-05 Thread Amaury Decrême
This patch add SiS964 support to i2c-sis630. Signed-off-by: Amaury Decrême --- Documentation/i2c/busses/i2c-sis630 | 17 +++- drivers/i2c/busses/Kconfig |4 +- drivers/i2c/busses/i2c-sis630.c | 148 ++- 3 files changed, 107 insertions(+), 62

[PATCH 0/2] I2C: SIS630: Add SIS964 support

2012-08-05 Thread Amaury Decrême
nd behaves differently. Done with SiS 630 and 964 datasheets. Amaury Decrême (2): I2C: SIS630: Add SiS964 support I2C: SIS630: Cosmetics Documentation/i2c/busses/i2c-sis630 | 17 +- drivers/i2c/busses/Kconfig |4 +- drivers/i2c/busses/i2c-sis630.c

Re: [PATCH v2 0/2] I2C: SIS964: Bus driver

2012-08-05 Thread Amaury Decrême
Salut Jean, Thanks for your comments. I will post now a new serie of patches for SIS630. -- Amaury Decrême -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: [PATCH v2 0/2] I2C: SIS964: Bus driver

2012-08-03 Thread Amaury Decrême
ded block data read/write support. + 03.08.2012 + Added support of SiS964 - Amaury Decrême */ /* @@ -41,6 +43,7 @@ Supports: SIS 630 SIS 730 + SIS 964 Note: we assume there can only be one device, with one SMBus interface. */ @@ -55,22 +58,22 @@ #incl

Re: [PATCH v2 0/2] I2C: SIS964: Bus driver

2012-08-03 Thread Amaury Decrême
ting for the same reason but posted it split. I'll "unsplit" for the V3 (unless i2c-sis630 patch). Amaury Decrême -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http:

[PATCH v2 2/2] I2C: SIS964: Bus driver - other files

2012-08-03 Thread Amaury Decrême
This patch contains: - Documentation for i2c-sis964 - Kconfig, Makefile, Maintainers Signed-off-by: Amaury Decrême --- Documentation/i2c/busses/i2c-sis964 | 36 +++ MAINTAINERS |7 ++ drivers/i2c/busses/Kconfig

[PATCH v2 1/2] I2C: SIS964: Bus driver - Driver

2012-08-03 Thread Amaury Decrême
This patchs contains the SMBus driver for SIS964. Built with Sis datasheets and by forking the SIS630 driver. Signed-off-by: Amaury Decrême --- drivers/i2c/busses/i2c-sis964.c | 578 +++ 1 files changed, 578 insertions(+), 0 deletions(-) create mode 100644

[PATCH v2 0/2] I2C: SIS964: Bus driver

2012-08-03 Thread Amaury Decrême
efile, Maintainers Changes: V2 - Remove of the insertion on include/linux/pci_ids.h and no quirk needed - Cosmetics on the source code + patch split Amaury Decrême (2): I2C: SIS964: Bus driver - Driver I2C: SIS964: Bus driver - other files Documentation/i2c/b

Re: [PATCH] i2c: sis964: bus driver

2012-07-18 Thread Amaury Decrême
#define PCI_DEVICE_ID_SI_968 0x0968 And will add this to drivers/i2c/busses/i2c-sis964.c directly as i2c-sis964 will be the only file needing this define +#define PCI_DEVICE_ID_SI_964 0x0964 Amaury Decrême -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH] i2c: sis964: bus driver

2012-07-14 Thread Amaury Decrême
_RESUME_EARLY(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_964, + quirk_sis_964_smbus); Still, I'm not quite sure if it is needed. Thanks for the comments. Le 13 juil. 2012 à 17:36, Bjorn Helgaas a écrit : > On Fri, Jul 13, 2012 at 3:40 AM, Amaury Decrême &

[PATCH] i2c: sis964: bus driver

2012-07-13 Thread Amaury Decrême
This patch is a driver for SiS964 I2C bus. It was forked from i2c-sis630 and modified with SiS datasheets. Tested with kmemleak. Signed-off-by: Amaury Decrême --- Documentation/i2c/busses/i2c-sis964 | 34 ++ MAINTAINERS | 16 + drivers/i2c/busses/Kconfig