Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113919
b: refs/heads/master
c: 2796073
h: refs/heads/master
i:
  113917: ab4bcf4
  113915: 0941e38
  113911: 2c9e1ee
  113903: 2fb06ff
  113887: 3639224
  113855: 9be43e4
  113791: 6eb1a0c
  113663: e6a0e50
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Oct 12, 2008
1 parent a95ae53 commit 68c3264
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: f2a01a0027b29f682c3833d582e2827a4690f661
refs/heads/master: 2796073a3d9cc4f610f1e68b3f62c197d86577ab
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/cx18/cx18-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static int mmio_ndelay[CX18_MAX_CARDS] = { -1, -1, -1, -1, -1, -1, -1, -1,
static unsigned cardtype_c = 1;
static unsigned tuner_c = 1;
static unsigned radio_c = 1;
static int mmio_ndelay_c = 1;
static unsigned mmio_ndelay_c = 1;
static char pal[] = "--";
static char secam[] = "--";
static char ntsc[] = "-";
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/cx18/cx18-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
void cx18_memcpy_fromio(struct cx18 *cx, void *to,
const void __iomem *from, unsigned int len)
{
const u8 *src = from;
const u8 __iomem *src = from;
u8 *dst = to;

/* Align reads on the CX23418's addresses */
Expand Down Expand Up @@ -61,7 +61,7 @@ void cx18_memcpy_fromio(struct cx18 *cx, void *to,

void cx18_memset_io(struct cx18 *cx, void __iomem *addr, int val, size_t count)
{
u8 *dst = addr;
u8 __iomem *dst = addr;
u16 val2 = val | (val << 8);
u32 val4 = val2 | (val2 << 16);

Expand Down

0 comments on commit 68c3264

Please sign in to comment.