diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-06 04:11:04 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-06 04:11:04 +0300 |
commit | e3a98ac47698bf1c1e4e6fae72afc9866953fce5 (patch) | |
tree | a33ba55286b55bcc092eac441071494c6ac17479 /drivers/mailbox/arm_mhu.c | |
parent | 2a013e37ce691a7c072df27b35e9790fc8f5a82f (diff) | |
parent | 86e488adaab77a733b01e759bf7bfda054479660 (diff) | |
download | linux-e3a98ac47698bf1c1e4e6fae72afc9866953fce5.tar.xz |
Merge branch 'mailbox-for-next' of git://git.linaro.org/landing-teams/working/fujitsu/integration
Pull mailbox updates from Jassi Brar:
"Mainly we move from jiffy based timer to HRTIMER for finer control
over polling. Then a controller reduces its polling period from 10 to
1ms"
* 'mailbox-for-next' of git://git.linaro.org/landing-teams/working/fujitsu/integration:
mailbox: arm_mhu: reduce txpoll_period from 10ms to 1 ms
mailbox: switch to hrtimer for tx_complete polling
mailbox: Drop owner assignment from platform_driver
Diffstat (limited to 'drivers/mailbox/arm_mhu.c')
-rw-r--r-- | drivers/mailbox/arm_mhu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/arm_mhu.c b/drivers/mailbox/arm_mhu.c index d0d0b0305345..99befa76e37c 100644 --- a/drivers/mailbox/arm_mhu.c +++ b/drivers/mailbox/arm_mhu.c @@ -148,7 +148,7 @@ static int mhu_probe(struct amba_device *adev, const struct amba_id *id) mhu->mbox.ops = &mhu_ops; mhu->mbox.txdone_irq = false; mhu->mbox.txdone_poll = true; - mhu->mbox.txpoll_period = 10; + mhu->mbox.txpoll_period = 1; amba_set_drvdata(adev, mhu); |