Skip to content

Commit f3fbc5a

Browse files
committed
Merge branch 's390-fixes'
Ursula Braun says: ==================== s390/net: updates 2020-05-13 please apply the fix from Wei Yongjun to netdev's net tree and add Karsten Graul as co-maintainer for drivers/s390/net. ==================== Signed-off-by: David S. Miller <[email protected]>
2 parents eead1c2 + be7fa20 commit f3fbc5a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14644,6 +14644,7 @@ F: drivers/iommu/s390-iommu.c
1464414644

1464514645
S390 IUCV NETWORK LAYER
1464614646
M: Julian Wiedmann <[email protected]>
14647+
M: Karsten Graul <[email protected]>
1464714648
M: Ursula Braun <[email protected]>
1464814649
1464914650
S: Supported

drivers/s390/net/ism_drv.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,10 @@ static int ism_probe(struct pci_dev *pdev, const struct pci_device_id *id)
521521

522522
ism->smcd = smcd_alloc_dev(&pdev->dev, dev_name(&pdev->dev), &ism_ops,
523523
ISM_NR_DMBS);
524-
if (!ism->smcd)
524+
if (!ism->smcd) {
525+
ret = -ENOMEM;
525526
goto err_resource;
527+
}
526528

527529
ism->smcd->priv = ism;
528530
ret = ism_dev_init(ism);

0 commit comments

Comments
 (0)