diff options
| author | Linux Build Service Account <lnxbuild@quicinc.com> | 2017-07-28 08:21:41 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-07-28 08:21:40 -0700 |
| commit | deea343b37a6fcb8207f3ee69d6a5808cefc7ec1 (patch) | |
| tree | ea9780555dedf00fd2a19177f81f0bee0a5d1498 | |
| parent | f6873748633133453d94d73266cc9fb6a6e4c7bf (diff) | |
| parent | bcd8434f473005ac5adf99b50c5a5309c5a6d5da (diff) | |
Merge "msm: ADSPRPC: Handle SMD event signal"
| -rw-r--r-- | drivers/char/adsprpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/adsprpc.c b/drivers/char/adsprpc.c index 8017961783f7..781fa96726e2 100644 --- a/drivers/char/adsprpc.c +++ b/drivers/char/adsprpc.c @@ -1456,7 +1456,7 @@ static void smd_event_handler(void *priv, unsigned event) switch (event) { case SMD_EVENT_OPEN: - complete(&me->channel[cid].work); + complete(&me->channel[cid].workport); break; case SMD_EVENT_CLOSE: fastrpc_notify_drivers(me, cid); @@ -1477,7 +1477,7 @@ static void fastrpc_init(struct fastrpc_apps *me) me->channel = &gcinfo[0]; for (i = 0; i < NUM_CHANNELS; i++) { init_completion(&me->channel[i].work); - init_completion(&me->channel[i].workport); + init_completion(&me->channel[i].workport); me->channel[i].sesscount = 0; } } |
