瀏覽代碼

gsi: Init props in the context before IRQ enable

Once the interrupt is enabled we could get an interrupt
immediately. To avoid a crash in this case, we have
to initialize the props structure in the gsi_ctx.

Change-Id: Ic595bc9d8ab5f3803ff6e1592358f426dcf51e0a
Signed-off-by: Ilia Lin <[email protected]>
Ilia Lin 4 年之前
父節點
當前提交
98d4a895e0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/platform/msm/gsi/gsi.c

+ 1 - 1
drivers/platform/msm/gsi/gsi.c

@@ -1269,6 +1269,7 @@ int gsi_register_device(struct gsi_per_props *props, unsigned long *dev_hdl)
 	}
 
 	spin_lock_init(&gsi_ctx->slock);
+	gsi_ctx->per = *props;
 	if (props->intr == GSI_INTR_IRQ) {
 		if (!props->irq) {
 			GSIERR("bad irq specified %u\n", props->irq);
@@ -1376,7 +1377,6 @@ int gsi_register_device(struct gsi_per_props *props, unsigned long *dev_hdl)
 		    props->emulator_intcntrlr_client_isr;
 	}
 
-	gsi_ctx->per = *props;
 	gsi_ctx->per_registered = true;
 	mutex_init(&gsi_ctx->mlock);
 	atomic_set(&gsi_ctx->num_chan, 0);