]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
net: ipa: ignore the microcontroller log event
authorAlex Elder <elder@linaro.org>
Thu, 12 Nov 2020 12:20:00 +0000 (06:20 -0600)
committerJakub Kicinski <kuba@kernel.org>
Fri, 13 Nov 2020 23:37:07 +0000 (15:37 -0800)
The IPA-resident microcontroller has the ability to log various
activity in an area of IPA shared memory.  When the microcontroller
starts it generates an event to the AP to provide information about
the log.

We don't support reading this log, and we can safely ignore the
event.  So do that rather than treating the log info event we
receive as "unsupported."

Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ipa/ipa_uc.c

index b382d47bc70d9307dccbc920ce31175490316e73..15bb357f3cfb1ba6e876a83d781118d90c99db05 100644 (file)
@@ -129,9 +129,10 @@ static void ipa_uc_event_handler(struct ipa *ipa, enum ipa_irq_id irq_id)
 
        if (shared->event == IPA_UC_EVENT_ERROR)
                dev_err(dev, "microcontroller error event\n");
-       else
+       else if (shared->event != IPA_UC_EVENT_LOG_INFO)
                dev_err(dev, "unsupported microcontroller event %hhu\n",
                        shared->event);
+       /* The LOG_INFO event can be safely ignored */
 }
 
 /* Microcontroller response IPA interrupt handler */