Commit a11b6969 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'i3c/for-5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux

Pull i3c updates from Boris Brezillon:
 "Minor fixes and MAINTAINERS updates"

* tag 'i3c/for-5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux:
  MAINTAINERS: add myself as maintainer of Cadence I3C master controller driver
  MAINTAINERS: Mark linux-i3c mailing list moderated
  i3c: Spelling s/dicovered/discovered/
  i3c: master: use i3c_dev_get_master()
parents ae2dc032 ae24f2b6
...@@ -7781,7 +7781,7 @@ F: drivers/i2c/i2c-stub.c ...@@ -7781,7 +7781,7 @@ F: drivers/i2c/i2c-stub.c
I3C SUBSYSTEM I3C SUBSYSTEM
M: Boris Brezillon <bbrezillon@kernel.org> M: Boris Brezillon <bbrezillon@kernel.org>
L: linux-i3c@lists.infradead.org L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
C: irc://chat.freenode.net/linux-i3c C: irc://chat.freenode.net/linux-i3c
T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
S: Maintained S: Maintained
...@@ -7797,6 +7797,12 @@ S: Maintained ...@@ -7797,6 +7797,12 @@ S: Maintained
F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
F: drivers/i3c/master/dw* F: drivers/i3c/master/dw*
I3C DRIVER FOR CADENCE I3C MASTER IP
M: Przemysław Gaj <pgaj@cadence.com>
S: Maintained
F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
F: drivers/i3c/master/i3c-master-cdns.c
IA64 (Itanium) PLATFORM IA64 (Itanium) PLATFORM
M: Tony Luck <tony.luck@intel.com> M: Tony Luck <tony.luck@intel.com>
M: Fenghua Yu <fenghua.yu@intel.com> M: Fenghua Yu <fenghua.yu@intel.com>
......
...@@ -1763,7 +1763,7 @@ static void i3c_master_bus_cleanup(struct i3c_master_controller *master) ...@@ -1763,7 +1763,7 @@ static void i3c_master_bus_cleanup(struct i3c_master_controller *master)
static struct i3c_dev_desc * static struct i3c_dev_desc *
i3c_master_search_i3c_dev_duplicate(struct i3c_dev_desc *refdev) i3c_master_search_i3c_dev_duplicate(struct i3c_dev_desc *refdev)
{ {
struct i3c_master_controller *master = refdev->common.master; struct i3c_master_controller *master = i3c_dev_get_master(refdev);
struct i3c_dev_desc *i3cdev; struct i3c_dev_desc *i3cdev;
i3c_bus_for_each_i3cdev(&master->bus, i3cdev) { i3c_bus_for_each_i3cdev(&master->bus, i3cdev) {
...@@ -2493,7 +2493,7 @@ int i3c_master_register(struct i3c_master_controller *master, ...@@ -2493,7 +2493,7 @@ int i3c_master_register(struct i3c_master_controller *master,
/* /*
* We're done initializing the bus and the controller, we can now * We're done initializing the bus and the controller, we can now
* register I3C devices dicovered during the initial DAA. * register I3C devices discovered during the initial DAA.
*/ */
master->init_done = true; master->init_done = true;
i3c_bus_normaluse_lock(&master->bus); i3c_bus_normaluse_lock(&master->bus);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment