From: Mark Brown Date: Wed, 12 Jul 2023 23:45:58 +0000 (+0100) Subject: net: dsa: ar9331: Use maple tree register cache X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=88085b3b83f55eab1be57f4eb0f69446717f23fb;p=linux.git net: dsa: ar9331: Use maple tree register cache We now have a regmap cache which uses a maple tree to store the register state, this is a more modern data structure and the regmap level code using it makes a number of assumptions better tuned for modern hardware than those made by the rbtree cache type that the at9331 driver uses. Switch the ar9331 driver to use the more modern data structure. This should have minimal practical impact, it's mainly code modernisation. Signed-off-by: Mark Brown Signed-off-by: David S. Miller --- diff --git a/drivers/net/dsa/qca/ar9331.c b/drivers/net/dsa/qca/ar9331.c index b2bf78ac485eb..72730dcc9ca97 100644 --- a/drivers/net/dsa/qca/ar9331.c +++ b/drivers/net/dsa/qca/ar9331.c @@ -1010,7 +1010,7 @@ static const struct regmap_config ar9331_mdio_regmap_config = { .wr_table = &ar9331_register_set, .rd_table = &ar9331_register_set, - .cache_type = REGCACHE_RBTREE, + .cache_type = REGCACHE_MAPLE, }; static struct regmap_bus ar9331_sw_bus = {