Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76425
b: refs/heads/master
c: ef8c188
h: refs/heads/master
i:
  76423: f43b632
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 837e1e4 commit 243ed7c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 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: 2d4c0ac60dbcdee83da5bdebc661c2c145938d8a
refs/heads/master: ef8c1888b32132ae48553a8ce00d5858ec3e9b51
14 changes: 7 additions & 7 deletions trunk/drivers/media/video/tuner-xc2028-types.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@

/* Audio types */

#define V4L2_STD_A2_A (1L<<32)
#define V4L2_STD_A2_B (1L<<33)
#define V4L2_STD_NICAM_A (1L<<34)
#define V4L2_STD_NICAM_B (1L<<35)
#define V4L2_STD_AM (1L<<36)
#define V4L2_STD_BTSC (1L<<37)
#define V4L2_STD_EIAJ (1L<<38)
#define V4L2_STD_A2_A (1LL<<32)
#define V4L2_STD_A2_B (1LL<<33)
#define V4L2_STD_NICAM_A (1LL<<34)
#define V4L2_STD_NICAM_B (1LL<<35)
#define V4L2_STD_AM (1LL<<36)
#define V4L2_STD_BTSC (1LL<<37)
#define V4L2_STD_EIAJ (1LL<<38)

#define V4L2_STD_A2 (V4L2_STD_A2_A | V4L2_STD_A2_B)
#define V4L2_STD_NICAM (V4L2_STD_NICAM_A | V4L2_STD_NICAM_B)
Expand Down
10 changes: 6 additions & 4 deletions trunk/drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <linux/dvb/frontend.h>
#include "dvb_frontend.h"


#define PREFIX "xc2028"

static int debug;
Expand Down Expand Up @@ -193,7 +194,7 @@ void dump_firm_type(unsigned int type)
printk("SCODE ");
}

static v4l2_std_id parse_audio_std_option(void)
static v4l2_std_id parse_audio_std_option(void)
{
if (strcasecmp(audio_std, "A2"))
return V4L2_STD_A2;
Expand Down Expand Up @@ -317,9 +318,10 @@ static int load_all_firmwares(struct dvb_frontend *fe)
if ((!size) || (size + p > endp)) {
tuner_err("Firmware type ");
dump_firm_type(type);
printk("(%x), id %lx is corrupted "
"(size=%ld, expected %d)\n",
type, (unsigned long)id, endp - p, size);
printk("(%x), id %llx is corrupted "
"(size=%d, expected %d)\n",
type, id,
(unsigned)(endp - p), size);
goto corrupt;
}

Expand Down

0 comments on commit 243ed7c

Please sign in to comment.