From: Arnd Bergmann <arnd@xxxxxxxx>
Clang warns about a parameter that is decremented but never evaluated heere:
bus/mhi/host/main.c:803:13: error: parameter 'event_quota' set but not used [-Werror,-Wunused-but-set-parameter]
u32 event_quota)
Remove the access to the variable to avoid that warning.
Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx>