Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8cb707b authored by Lakshmi Narayana Kalavala's avatar Lakshmi Narayana Kalavala Committed by Abhijith Desai
Browse files

drm/msm/sde: Change the interrupt status flag to non static



g_sde_irq_status saves the status of the interrupt for
debugging interrupt storm cases. Ramdumps collected do not
have the corresponding symbol as it is defined as static
variable. Hence change to non static variable.

Change-Id: I539c0144667ad7e5cdb51ae9c73133cedcc4ca29
Signed-off-by: default avatarLakshmi Narayana Kalavala <lkalaval@codeaurora.org>
Signed-off-by: default avatarAbhijith Desai <desaia@codeaurora.org>
parent 388a60ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
#include "sde_irq.h"
#include "sde_core_irq.h"

static uint32_t g_sde_irq_status;
uint32_t g_sde_irq_status;

void sde_irq_update(struct msm_kms *msm_kms, bool enable)
{