summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Wang <wangroger@google.com>2022-11-04 07:13:07 +0800
committerTreeHugger Robot <treehugger-gerrit@google.com>2022-11-09 09:14:31 +0000
commit40f2f718afa50ea028c35217daa8efd8249f127f (patch)
tree8d85f958d7f657d8f2bea3acb9eb6ec87a9e2731
parenta68150e9f316e55ebacfd86bff4e6349be9e8faa (diff)
downloadbcm4389-40f2f718afa50ea028c35217daa8efd8249f127f.tar.gz
bcmdhd: Modify IRQ trigger type
In this commit, we changed dhdpcie_host_wake from edge-triggered to level-triggerred. we noticed IRQ does not be raised even when OOB is on the high level in some bugs. Bug: 256261869 Test: Platfrom can suspend and be woken up by level-triggered. Change-Id: I222b27ecbd4b0bcb22ff8e3bb6d5c8f873a7575d Signed-off-by: Roger Wang <wangroger@google.com>
-rw-r--r--dhd_custom_google.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhd_custom_google.c b/dhd_custom_google.c
index d31d238..0033466 100644
--- a/dhd_custom_google.c
+++ b/dhd_custom_google.c
@@ -847,7 +847,7 @@ struct resource dhd_wlan_resources = {
.start = 0, /* Dummy */
.end = 0, /* Dummy */
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_SHAREABLE |
- IORESOURCE_IRQ_HIGHEDGE,
+ IORESOURCE_IRQ_HIGHLEVEL,
};
EXPORT_SYMBOL(dhd_wlan_resources);