diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2025-08-13 18:14:53 +0200 |
---|---|---|
committer | Jassi Brar <jassisinghbrar@gmail.com> | 2025-10-06 18:14:00 -0500 |
commit | 60d7416d8eb46ef2e71bf3dc13cd0c5eefc2ef89 (patch) | |
tree | 5cb759fc444a6094762eaf887f9daa9dc3fc60c4 | |
parent | 426f4e9414df5d51e7bc6519edb82bccf07ce52f (diff) |
mailbox: remove unneeded 'fast_io' parameter in regmap_config
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
-rw-r--r-- | drivers/mailbox/qcom-apcs-ipc-mailbox.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mailbox/qcom-apcs-ipc-mailbox.c b/drivers/mailbox/qcom-apcs-ipc-mailbox.c index 8b24ec0fa191..d3a8f6b4a03b 100644 --- a/drivers/mailbox/qcom-apcs-ipc-mailbox.c +++ b/drivers/mailbox/qcom-apcs-ipc-mailbox.c @@ -58,7 +58,6 @@ static const struct regmap_config apcs_regmap_config = { .reg_stride = 4, .val_bits = 32, .max_register = 0x1008, - .fast_io = true, }; static int qcom_apcs_ipc_send_data(struct mbox_chan *chan, void *data) |