V4L/DVB (6439): dvb_frontend: codingstyle cleanups
authorMichael Krufky <mkrufky@linuxtv.org>
Mon, 22 Oct 2007 03:12:16 +0000 (00:12 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:01:09 +0000 (19:01 -0200)
thanks to checkpatch.pl

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/dvb-core/dvb_frontend.h

index f93c5db..50dc556 100644 (file)
@@ -165,19 +165,19 @@ struct dvb_fe_events {
 struct dvb_frontend {
        struct dvb_frontend_ops ops;
        struct dvb_adapter *dvb;
-       voiddemodulator_priv;
-       voidtuner_priv;
-       voidfrontend_priv;
-       voidsec_priv;
-       voidanalog_demod_priv;
+       void *demodulator_priv;
+       void *tuner_priv;
+       void *frontend_priv;
+       void *sec_priv;
+       void *analog_demod_priv;
 };
 
-extern int dvb_register_frontend(struct dvb_adapterdvb,
-                                struct dvb_frontendfe);
+extern int dvb_register_frontend(struct dvb_adapter *dvb,
+                                struct dvb_frontend *fe);
 
-extern int dvb_unregister_frontend(struct dvb_frontendfe);
+extern int dvb_unregister_frontend(struct dvb_frontend *fe);
 
-extern void dvb_frontend_detach(struct dvb_frontendfe);
+extern void dvb_frontend_detach(struct dvb_frontend *fe);
 
 extern void dvb_frontend_reinitialise(struct dvb_frontend *fe);