aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2013-04-11 17:52:40 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-04-11 12:58:39 -0700
commit7c360aa7cd6b469671fc2ea7a889516095cd0efe (patch)
tree00035a5b3bd4105e52495a40aad05d844e6efb55
parentstaging: zcache: fix account foregin counters against zero-filled pages (diff)
downloadlinux-7c360aa7cd6b469671fc2ea7a889516095cd0efe.tar.gz
linux-7c360aa7cd6b469671fc2ea7a889516095cd0efe.zip
staging: dwc2: don't pass IRQ_LEVEL to devm_request_irq
It seems this flag is intended to pass to irq_set_status_flags, not request_irq, and is not available on all architectures. Its value corresponds to IRQF_PROBE_SHARED, which shouldn't be needed for this driver, so removing this flag should be safe. Signed-off-by: Matthijs Kooijman <matthijs@stdin.nl> Acked-by: Paul Zimmerman <paulz@synopsys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/dwc2/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/dwc2/pci.c b/drivers/staging/dwc2/pci.c
index 0825eef0524f..80808d82aa74 100644
--- a/drivers/staging/dwc2/pci.c
+++ b/drivers/staging/dwc2/pci.c
@@ -157,7 +157,7 @@ static int dwc2_driver_probe(struct pci_dev *dev,
dev_dbg(&dev->dev, "registering common handler for irq%d\n", dev->irq);
retval = devm_request_irq(&dev->dev, dev->irq, dwc2_handle_common_intr,
- IRQF_SHARED | IRQ_LEVEL, dev_name(&dev->dev),
+ IRQF_SHARED, dev_name(&dev->dev),
hsotg);
if (retval)
dwc2_hcd_remove(hsotg);
t: handle generic action errorsAlexander Aring1-32/+61 2018-02-16net: sched: act: add extack to initAlexander Aring3-10/+16 2018-02-16net: sched: act: fix code styleAlexander Aring3-11/+12 2018-02-16selftests/net: add zerocopy support for PF_RDS test caseSowmini Varadhan1-4/+64 2018-02-16selftests/net: add support for PF_RDS socketsSowmini Varadhan1-1/+64 2018-02-16rds: zerocopy Tx support.Sowmini Varadhan4-8/+91 2018-02-16rds: support for zcopy completion notificationSowmini Varadhan5-7/+96 2018-02-16sock: permit SO_ZEROCOPY on PF_RDS socketSowmini Varadhan1-11/+14 2018-02-16rds: hold a sock ref from rds_message to the rds_sockSowmini Varadhan2-7/+8 2018-02-16skbuff: export mm_[un]account_pinned_pages for other modulesSowmini Varadhan2-2/+7 2018-02-16net: Revert sched action extack support series.David S. Miller4-28/+21 2018-02-16net: sched: act: add extack to initAlexander Aring3-10/+16 2018-02-16net: sched: act: fix code styleAlexander Aring3-11/+12 2018-02-16net: sched: fix unbalance in the error path of tca_action_flush()Davide Caratti1-1/+3 2018-02-16net: dsa: mv88e6xxx: Release mutex between each ATU readAndrew Lunn1-6/+8 2018-02-16net: dsa: mv88e6xxx: Release mutex between each statistics readAndrew Lunn1-4/+6 2018-02-16tipc: rename tipc_server to tipc_topsrvJon Maloy7-259/+258 2018-02-16tipc: separate topology server listener socket from subcsriber socketsJon Maloy1-181/+147 2018-02-16tipc: make struct tipc_server private for server.cJon Maloy5-128/+110 2018-02-16tipc: some prefix changesJon Maloy4-56/+54 2018-02-16tipc: collapse subscription creation functionsJon Maloy4-43/+22 2018-02-16tipc: simplify endianness handling in topology subscriberJon Maloy5-102/+86 2018-02-16tipc: simplify interaction between subscription and topology connectionJon Maloy5-149/+88 2018-02-16tipc: eliminate struct tipc_subscriberJon Maloy4-207/+146 2018-02-16tipc: remove unnecessary function pointersJon Maloy4-37/+20 2018-02-16tipc: remove redundant code in topology serverJon Maloy3-35/+9 2018-02-15selftests/net: fixes psock_fanout eBPF test casePrashant Bhole1-1/+2 2018-02-15net/ipv4: Remove fib table id from rtableDavid Ahern4-12/+1 2018-02-15tools: tc-testing: Update README and TODOBrenda J. Butler2-19/+179