summaryrefslogtreecommitdiff
path: root/drivers/media/usb/as102/as102_drv.c
Commit message (Collapse)AuthorAge
* media: move dvb kAPI headers to include/mediaMauro Carvalho Chehab2017-12-28
| | | | | | | | Except for DVB, all media kAPI headers are at include/media. Move the headers to it. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
* [media] as102: fix error return codeJulia Lawall2015-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Return a negative error code on failure. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ identifier ret; expression e1,e2; @@ ( if (\(ret < 0\|ret != 0\)) { ... return ret; } | ret = 0 ) ... when != ret = e1 when != &ret *if(...) { ... when != ret = e2 when forall return ret; } // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
* [media] as102: prepare as102_fe to be compiled as a moduleMauro Carvalho Chehab2014-08-21
| | | | | | | Remove the dependencies of as102_cmd from as102, in order to allow it to be compiled as a separate module. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
* [media] as102: Move ancillary routines to the begginingMauro Carvalho Chehab2014-08-21
| | | | | | | | | Avoid having function prototypes by moving some ancillary routines to the beginning of the file. No functional changes. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
* [media] as102: get rid of FSF mail addressMauro Carvalho Chehab2014-08-21
| | | | | | | | Make checkpatch happier by removing FSF mail address. No functional changes. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
* [media] as102: promote it out of stagingMauro Carvalho Chehab2014-08-21
This driver is stable and doesn't contain any really serious issue. Move it out of staging. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>