Skip to content

Commit

Permalink
V4L/DVB (3437): Fix typo in enum name and use enum in struct dmxdev_f…
Browse files Browse the repository at this point in the history
…ilter

Rename 'enum dmxdevype' to 'enum dmxdev_type' and use this enum instead
of int for the member 'type' of struct dmxdev_filter.

Signed-off-by: Andreas Oberritter <obi@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Andreas Oberritter authored and Linus Torvalds committed Mar 21, 2006
1 parent 6abe6bf commit bbad7dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/dvb-core/dmxdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "dvbdev.h"
#include "demux.h"

enum dmxdevype {
enum dmxdev_type {
DMXDEV_TYPE_NONE,
DMXDEV_TYPE_SEC,
DMXDEV_TYPE_PES,
Expand Down Expand Up @@ -76,7 +76,7 @@ struct dmxdev_filter {
struct dmx_pes_filter_params pes;
} params;

int type;
enum dmxdev_type type;
enum dmxdev_state state;
struct dmxdev *dev;
struct dmxdev_buffer buffer;
Expand Down

0 comments on commit bbad7dc

Please sign in to comment.