Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1361543

Re: [PATCH 1/2] media/dvb-core: fix inverted check

From Olli Salonen <olli.salonen@iki.fi>
Newsgroups linux.kernel
Subject Re: [PATCH 1/2] media/dvb-core: fix inverted check
Date 2016-03-21 07:40 +0100
Message-ID <rf1Fo-1LR-35@gated-at.bofh.it> (permalink)
References <reahH-Ok-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Max,

Already in the tree:
http://git.linuxtv.org/media_tree.git/commit/drivers/media/dvb-core?id=711f3fba6ffd3914fd1b5ed9faf8d22bab6f2203

Cheers,
-olli

On 18 March 2016 at 23:31, Max Kellermann <max@duempel.org> wrote:
> Breakage caused by commit f50d51661a
>
> Signed-off-by: Max Kellermann <max@duempel.org>
> ---
>  drivers/media/dvb-core/dvbdev.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/dvb-core/dvbdev.c b/drivers/media/dvb-core/dvbdev.c
> index 560450a..c756d4b 100644
> --- a/drivers/media/dvb-core/dvbdev.c
> +++ b/drivers/media/dvb-core/dvbdev.c
> @@ -682,7 +682,7 @@ int dvb_create_media_graph(struct dvb_adapter *adap,
>         if (demux && ca) {
>                 ret = media_create_pad_link(demux, 1, ca,
>                                             0, MEDIA_LNK_FL_ENABLED);
> -               if (!ret)
> +               if (ret)
>                         return -ENOMEM;
>         }
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH 1/2] media/dvb-core: fix inverted check Max Kellermann <max@duempel.org> - 2016-03-18 22:40 +0100
  [PATCH 2/2] media/dvb-core: forward media_create_pad_links() return  value Max Kellermann <max@duempel.org> - 2016-03-18 22:40 +0100
  Re: [PATCH 1/2] media/dvb-core: fix inverted check Olli Salonen <olli.salonen@iki.fi> - 2016-03-21 07:40 +0100

csiph-web