drivers: Apply IPM callback signature change where relevant

Of course IPM drivers now provide their device instance. There are 2
drivers using IPM callbacks as well, so they get the imp device instance
pointer now through the callback.

Fixes #26923

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2020-07-08 19:13:49 +02:00 committed by Carles Cufí
commit c6706561b9
8 changed files with 21 additions and 15 deletions

View file

@ -69,7 +69,7 @@ static void imx_mu_isr(void *arg)
}
if (data->callback) {
data->callback(data->callback_ctx,
data->callback(dev, data->callback_ctx,
(uint32_t)id,
&data32[0]);
}