public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] mfd: convert to use maple tree register cache
@ 2024-02-06  7:12 Bo Liu
  2024-02-06  7:12 ` [PATCH 01/18] mfd: ac100: " Bo Liu
                   ` (19 more replies)
  0 siblings, 20 replies; 30+ messages in thread
From: Bo Liu @ 2024-02-06  7:12 UTC (permalink / raw)
  To: lee, wens, marek.vasut+renesas, support.opensource,
	neil.armstrong, ckeepax, rf, mazziesaccount, mcoquelin.stm32,
	alexandre.torgue
  Cc: linux-kernel, linux-renesas-soc, linux-amlogic, patches,
	linux-stm32, linux-arm-kernel, Bo Liu

The maple tree register cache is based on a much more modern data structure
than the rbtree cache and makes optimisation choices which are probably
more appropriate for modern systems than those made by the rbtree cache.

Bo Liu (18):
  mfd: ac100: convert to use maple tree register cache
  mfd: as3711: convert to use maple tree register cache
  mfd: as3722: convert to use maple tree register cache
  mfd: axp20x: convert to use maple tree register cache
  mfd: bcm590xx: convert to use maple tree register cache
  mfd: bd9571mwv: convert to use maple tree register cache
  mfd: dialog: convert to use maple tree register cache
  mfd: khadas-mcu: convert to use maple tree register cache
  mfd: lochnagar-i2c: convert to use maple tree register cache
  mfd: wolfson: convert to use maple tree register cache
  mfd: rohm: convert to use maple tree register cache
  mfd: rk8xx: convert to use maple tree register cache
  mfd: rn5t618: convert to use maple tree register cache
  mfd: rsmu_i2c: convert to use maple tree register cache
  mfd: si476x: convert to use maple tree register cache
  mfd: stmfx: convert to use maple tree register cache
  mfd: stpmic1: convert to use maple tree register cache
  mfd: rc5t583: convert to use maple tree register cache

 drivers/mfd/ac100.c         | 2 +-
 drivers/mfd/as3711.c        | 2 +-
 drivers/mfd/as3722.c        | 2 +-
 drivers/mfd/axp20x.c        | 4 ++--
 drivers/mfd/bcm590xx.c      | 4 ++--
 drivers/mfd/bd9571mwv.c     | 4 ++--
 drivers/mfd/da9052-core.c   | 2 +-
 drivers/mfd/da9055-core.c   | 2 +-
 drivers/mfd/da9062-core.c   | 4 ++--
 drivers/mfd/da9063-i2c.c    | 2 +-
 drivers/mfd/da9150-core.c   | 2 +-
 drivers/mfd/khadas-mcu.c    | 2 +-
 drivers/mfd/lochnagar-i2c.c | 4 ++--
 drivers/mfd/rc5t583.c       | 2 +-
 drivers/mfd/rk8xx-spi.c     | 2 +-
 drivers/mfd/rn5t618.c       | 2 +-
 drivers/mfd/rohm-bd71828.c  | 4 ++--
 drivers/mfd/rohm-bd718x7.c  | 2 +-
 drivers/mfd/rohm-bd9576.c   | 2 +-
 drivers/mfd/rsmu_i2c.c      | 2 +-
 drivers/mfd/si476x-prop.c   | 2 +-
 drivers/mfd/stmfx.c         | 2 +-
 drivers/mfd/stpmic1.c       | 2 +-
 drivers/mfd/wm5102-tables.c | 2 +-
 drivers/mfd/wm5110-tables.c | 2 +-
 drivers/mfd/wm8350-regmap.c | 2 +-
 drivers/mfd/wm8400-core.c   | 2 +-
 drivers/mfd/wm97xx-core.c   | 6 +++---
 28 files changed, 36 insertions(+), 36 deletions(-)

-- 
2.18.2


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

end of thread, other threads:[~2024-02-08 14:26 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-06  7:12 [PATCH 00/18] mfd: convert to use maple tree register cache Bo Liu
2024-02-06  7:12 ` [PATCH 01/18] mfd: ac100: " Bo Liu
2024-02-06  7:12 ` [PATCH 02/18] mfd: as3711: " Bo Liu
2024-02-06  7:12 ` [PATCH 03/18] mfd: as3722: " Bo Liu
2024-02-06  7:13 ` [PATCH 04/18] mfd: axp20x: " Bo Liu
2024-02-06  7:13 ` [PATCH 05/18] mfd: bcm590xx: " Bo Liu
2024-02-06  7:13 ` [PATCH 06/18] mfd: bd9571mwv: " Bo Liu
2024-02-06  7:13 ` [PATCH 07/18] mfd: dialog: " Bo Liu
2024-02-06  7:13 ` [PATCH 08/18] mfd: khadas-mcu: " Bo Liu
2024-02-06  8:47   ` neil.armstrong
2024-02-06  7:13 ` [PATCH 09/18] mfd: lochnagar-i2c: " Bo Liu
2024-02-06  9:58   ` Charles Keepax
2024-02-06  7:13 ` [PATCH 10/18] mfd: wolfson: " Bo Liu
2024-02-06 10:04   ` Charles Keepax
2024-02-06 10:23     ` Charles Keepax
2024-02-06  7:13 ` [PATCH 11/18] mfd: rohm: " Bo Liu
2024-02-07  7:57   ` Matti Vaittinen
2024-02-06  7:13 ` [PATCH 12/18] mfd: rk8xx: " Bo Liu
2024-02-06  7:13 ` [PATCH 13/18] mfd: rn5t618: " Bo Liu
2024-02-06  7:13 ` [PATCH 14/18] mfd: rsmu_i2c: " Bo Liu
2024-02-06  7:13 ` [PATCH 15/18] mfd: si476x: " Bo Liu
2024-02-06  7:13 ` [PATCH 16/18] mfd: stmfx: " Bo Liu
2024-02-06  7:13 ` [PATCH 17/18] mfd: stpmic1: " Bo Liu
2024-02-06  7:13 ` [PATCH 18/18] mfd: rc5t583: " Bo Liu
2024-02-06  9:33 ` [PATCH 00/18] mfd: " Geert Uytterhoeven
2024-02-06 10:07   ` Mark Brown
2024-02-06 10:14     ` Geert Uytterhoeven
2024-02-06 10:59       ` Mark Brown
2024-02-08 14:24 ` Lee Jones
2024-02-08 14:26   ` Lee Jones

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