projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b929c0
)
PCI: switchtec: Simplify switchtec_dma_mrpc_isr()
author
Bjorn Helgaas
<bhelgaas@google.com>
Fri, 16 Dec 2022 16:21:25 +0000
(10:21 -0600)
committer
Bjorn Helgaas
<bhelgaas@google.com>
Wed, 18 Jan 2023 17:11:14 +0000
(11:11 -0600)
The "ret" variable in switchtec_dma_mrpc_isr() is superfluous. Remove it
and just return the value. No functional change intended.
Link:
https://lore.kernel.org/r/20221216162126.207863-2-helgaas@kernel.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
drivers/pci/switch/switchtec.c
patch
|
blob
|
history
diff --git
a/drivers/pci/switch/switchtec.c
b/drivers/pci/switch/switchtec.c
index 75be4fe225090573ab2f2b998a8d791f3065b706..d7ae84070e29466261195bfd0c0656e2f836791e 100644
(file)
--- a/
drivers/pci/switch/switchtec.c
+++ b/
drivers/pci/switch/switchtec.c
@@
-1480,15
+1480,13
@@
static irqreturn_t switchtec_event_isr(int irq, void *dev)
static irqreturn_t switchtec_dma_mrpc_isr(int irq, void *dev)
{
struct switchtec_dev *stdev = dev;
- irqreturn_t ret = IRQ_NONE;
iowrite32(SWITCHTEC_EVENT_CLEAR |
SWITCHTEC_EVENT_EN_IRQ,
&stdev->mmio_part_cfg->mrpc_comp_hdr);
schedule_work(&stdev->mrpc_work);
- ret = IRQ_HANDLED;
- return ret;
+ return IRQ_HANDLED;
}
static int switchtec_init_isr(struct switchtec_dev *stdev)