Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit acc37e8f authored by Max Kellermann's avatar Max Kellermann Committed by Mauro Carvalho Chehab
Browse files

[media] media/dvb-core: forward media_create_pad_links() return value



Instead of always return -ENOMEM, return the real error that should
come from media_create_pad_link().

Signed-off-by: default avatarMax Kellermann <max@duempel.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 5f61ff86
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -676,13 +676,13 @@ int dvb_create_media_graph(struct dvb_adapter *adap,
					     demux, 0, MEDIA_LNK_FL_ENABLED,
					     false);
		if (ret)
			return -ENOMEM;
			return ret;
	}
	if (demux && ca) {
		ret = media_create_pad_link(demux, 1, ca,
					    0, MEDIA_LNK_FL_ENABLED);
		if (ret)
			return -ENOMEM;
			return ret;
	}

	/* Create demux links for each ringbuffer/pad */