]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[media] drxk: Proper handle/propagate the error codes
authorMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 10 Jul 2011 04:49:53 +0000 (01:49 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 10 Jul 2011 19:38:46 +0000 (16:38 -0300)
commitc23bf4402d24b1287da6ab6793ca68dcd0c27093
treea40b71c2f419a8732a5b316627c13923906f6284
parent0d742a728f8cecee809bd012034769251be6d96c
[media] drxk: Proper handle/propagate the error codes

This driver is very big and complex. An error happening in the middle
of any initialization may cause the frontend to not work. So, it
needs to properly propagate error codes internally and to userspace.

Also, printing the error codes at the places it happened helps to
discover were's a bug at the code.

Before this change, a do { } while (0) loop and lots of breaks inside
were used to propagate errors. While this works, if there are
loops inside other loops, it could be easy to forget to add another
break, causing the error to not abort the function.

Also, as not all functions were reporting errors, it is hard to
discover why something failed.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/drxk_hard.c