mbox series

[v6,0/8] i2c: add zhaoxin i2c controller driver

Message ID cover.1703830854.git.hanshu-oc@zhaoxin.com
Headers show
Series i2c: add zhaoxin i2c controller driver | expand

Message

Hans Hu Dec. 29, 2023, 6:30 a.m. UTC
v5->v6:
	fix build warnning reported by kernel test robot
v4->v5:
	fix some build errors.

In version v4, the patch consists of 8 files.
This version is based on the latest for-next branch,
with some adjustments as suggested by Wolfram.

Signed-off-by: Hans Hu <hanshu-oc@zhaoxin.com>

Hans Hu (8):
  i2c: wmt: create wmt_i2c_init for general init
  i2c: wmt: rename marcos with prefix WMTI2C_
  i2c: wmt: adjust line length to meet style
  i2c: wmt: split out common files
  i2c: wmt: rename with prefix VIAI2C_ and viai2c_
  i2c: wmt: fix a bug when thread blocked
  i2c: wmt: add platform type VIAI2C_PLAT_WMT
  i2c: add zhaoxin i2c controller driver

 MAINTAINERS                            |  10 +-
 drivers/i2c/busses/Kconfig             |  10 +
 drivers/i2c/busses/Makefile            |   4 +
 drivers/i2c/busses/i2c-viai2c-common.c | 278 +++++++++++++++++
 drivers/i2c/busses/i2c-viai2c-common.h |  79 +++++
 drivers/i2c/busses/i2c-wmt-plt.c       | 139 +++++++++
 drivers/i2c/busses/i2c-wmt.c           | 417 -------------------------
 drivers/i2c/busses/i2c-zhaoxin-plt.c   | 298 ++++++++++++++++++
 8 files changed, 817 insertions(+), 418 deletions(-)
 create mode 100644 drivers/i2c/busses/i2c-viai2c-common.c
 create mode 100644 drivers/i2c/busses/i2c-viai2c-common.h
 create mode 100644 drivers/i2c/busses/i2c-wmt-plt.c
 delete mode 100644 drivers/i2c/busses/i2c-wmt.c
 create mode 100644 drivers/i2c/busses/i2c-zhaoxin-plt.c

Comments

Andi Shyti Jan. 3, 2024, 8:03 p.m. UTC | #1
Hi Hans,

On Fri, Dec 29, 2023 at 02:30:31PM +0800, Hans Hu wrote:
> v5->v6:
> 	fix build warnning reported by kernel test robot
> v4->v5:
> 	fix some build errors.

Where is the full log?

Andi