Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201940
b: refs/heads/master
c: 39e1256
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Aug 2, 2010
1 parent 188fce3 commit 5caabdd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 54b78608c6f4a30b4d64ec17bc36636c2a081506
refs/heads/master: 39e1256bc4b85145b9db392e49a71cad43f6903b
2 changes: 1 addition & 1 deletion trunk/drivers/staging/tm6000/tm6000-alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ static int tm6000_audio_fini(struct tm6000_core *dev)
}

struct tm6000_ops audio_ops = {
.id = TM6000_AUDIO,
.type = TM6000_AUDIO,
.name = "TM6000 Audio Extension",
.init = tm6000_audio_init,
.fini = tm6000_audio_fini,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/tm6000/tm6000-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ static int dvb_fini(struct tm6000_core *dev)
}

static struct tm6000_ops dvb_ops = {
.id = TM6000_DVB,
.type = TM6000_DVB,
.name = "TM6000 dvb Extension",
.init = dvb_init,
.fini = dvb_fini,
Expand Down
8 changes: 5 additions & 3 deletions trunk/drivers/staging/tm6000/tm6000.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,15 @@ struct tm6000_core {
spinlock_t slock;
};

#define TM6000_AUDIO 0x10
#define TM6000_DVB 0x20
enum tm6000_ops_type {
TM6000_AUDIO = 0x10,
TM6000_DVB = 0x20,
};

struct tm6000_ops {
struct list_head next;
char *name;
int id;
enum tm6000_ops_type type;
int (*init)(struct tm6000_core *);
int (*fini)(struct tm6000_core *);
};
Expand Down

0 comments on commit 5caabdd

Please sign in to comment.