aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2014-08-22 13:07:50 +0100
committerJon Medhurst <tixy@linaro.org>2015-03-16 12:00:36 +0000
commit5bb9234c87a32bc9717668bf949e572d5d1abc4a (patch)
tree33a74de35f50fc19ba6210254222518c57744de1 /drivers
parentec8e27d8cd880fb0f8b2e3071025cba9ef6ec03a (diff)
mailbox: mhu: Update for new version of mailbox patches
Signed-off-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mailbox/scpi_protocol.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/mailbox/scpi_protocol.c b/drivers/mailbox/scpi_protocol.c
index edcf47ea06ab..49b500cd87ef 100644
--- a/drivers/mailbox/scpi_protocol.c
+++ b/drivers/mailbox/scpi_protocol.c
@@ -170,11 +170,8 @@ static int send_scpi_cmd(struct scpi_data_buf *scpi_buf, bool high_priority)
cl.tx_done = NULL;
cl.tx_block = false;
cl.knows_txdone = false;
- cl.chan_name = high_priority ?
- CHANNEL_HIGH_PRIORITY :
- CHANNEL_LOW_PRIORITY;
- chan = mbox_request_channel(&cl);
+ chan = mbox_request_channel(&cl, high_priority);
if (IS_ERR(chan))
return PTR_ERR(chan);