Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-12 Thread M'boumba Cedric Madianga
Hi Wolfram, Thanks for your comments. I will fix all of them + build errors reported by build-bot in the V6. Best regards, Cedric Madianga 2016-12-11 22:42 GMT+01:00 Wolfram Sang : > Hi, > >> +config I2C_STM32F4 >> + tristate "STMicroelectronics STM32F4 I2C support" >>

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-12 Thread M'boumba Cedric Madianga
Hi Wolfram, Thanks for your comments. I will fix all of them + build errors reported by build-bot in the V6. Best regards, Cedric Madianga 2016-12-11 22:42 GMT+01:00 Wolfram Sang : > Hi, > >> +config I2C_STM32F4 >> + tristate "STMicroelectronics STM32F4 I2C support" >> + depends on

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-11 Thread Wolfram Sang
Hi, > +config I2C_STM32F4 > + tristate "STMicroelectronics STM32F4 I2C support" > + depends on ARCH_STM32 || COMPILE_TEST Double space. > +#define STM32F4_I2C_MIN_FREQ 2 > +#define STM32F4_I2C_MAX_FREQ 42 Those two must be unsigned to fix the build error (e.g. 2U)

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-11 Thread Wolfram Sang
Hi, > +config I2C_STM32F4 > + tristate "STMicroelectronics STM32F4 I2C support" > + depends on ARCH_STM32 || COMPILE_TEST Double space. > +#define STM32F4_I2C_MIN_FREQ 2 > +#define STM32F4_I2C_MAX_FREQ 42 Those two must be unsigned to fix the build error (e.g. 2U)

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread kbuild test robot
Hi M'boumba, [auto build test WARNING on wsa/i2c/for-next] [also build test WARNING on v4.9-rc8 next-20161208] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread M'boumba Cedric Madianga
This patch adds support for the STM32F4 I2C controller. Signed-off-by: M'boumba Cedric Madianga --- drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile | 1 + drivers/i2c/busses/i2c-stm32f4.c | 851 +++ 3

[PATCH v5 2/5] i2c: Add STM32F4 I2C driver

2016-12-08 Thread M'boumba Cedric Madianga
This patch adds support for the STM32F4 I2C controller. Signed-off-by: M'boumba Cedric Madianga --- drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile | 1 + drivers/i2c/busses/i2c-stm32f4.c | 851 +++ 3 files changed, 862