Merge "msm: gsi: enable wake irq"

This commit is contained in:
Linux Build Service Account 2016-08-18 12:04:11 -07:00 committed by Gerrit - the friendly Code Review server
commit 88be552e93

View file

@ -643,6 +643,13 @@ int gsi_register_device(struct gsi_per_props *props, unsigned long *dev_hdl)
GSIERR("failed to register isr for %u\n", props->irq);
return -GSI_STATUS_ERROR;
}
res = enable_irq_wake(props->irq);
if (res)
GSIERR("failed to enable wake irq %u\n", props->irq);
else
GSIERR("GSI irq is wake enabled %u\n", props->irq);
} else {
GSIERR("do not support interrupt type %u\n", props->intr);
return -GSI_STATUS_UNSUPPORTED_OP;