Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 85741
b: refs/heads/master
c: 384b835
h: refs/heads/master
i:
  85739: 544ebeb
v: v3
  • Loading branch information
Brandon Philips authored and Mauro Carvalho Chehab committed Feb 18, 2008
1 parent cd7e214 commit 1cb09ba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 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: 18c0ecf16e1caa266e12319b5ab82d80e8a3ccf0
refs/heads/master: 384b835aed8acf341d99969b58d27434685bdd3d
16 changes: 7 additions & 9 deletions trunk/drivers/media/video/videobuf-vmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static struct vm_operations_struct videobuf_vm_ops =

static void *__videobuf_alloc(size_t size)
{
struct videbuf_vmalloc_memory *mem;
struct videobuf_vmalloc_memory *mem;
struct videobuf_buffer *vb;

vb = kzalloc(size+sizeof(*mem),GFP_KERNEL);
Expand All @@ -127,9 +127,7 @@ static int __videobuf_iolock (struct videobuf_queue* q,
struct v4l2_framebuffer *fbuf)
{
int pages;

struct videbuf_vmalloc_memory *mem=vb->priv;

struct videobuf_vmalloc_memory *mem=vb->priv;

BUG_ON(!mem);

Expand Down Expand Up @@ -195,7 +193,7 @@ static int __videobuf_mmap_free(struct videobuf_queue *q)
static int __videobuf_mmap_mapper(struct videobuf_queue *q,
struct vm_area_struct *vma)
{
struct videbuf_vmalloc_memory *mem;
struct videobuf_vmalloc_memory *mem;
struct videobuf_mapping *map;
unsigned int first;
int retval;
Expand Down Expand Up @@ -267,7 +265,7 @@ static int __videobuf_copy_to_user ( struct videobuf_queue *q,
char __user *data, size_t count,
int nonblocking )
{
struct videbuf_vmalloc_memory *mem=q->read_buf->priv;
struct videobuf_vmalloc_memory *mem=q->read_buf->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

Expand All @@ -288,7 +286,7 @@ static int __videobuf_copy_stream ( struct videobuf_queue *q,
int vbihack, int nonblocking )
{
unsigned int *fc;
struct videbuf_vmalloc_memory *mem=q->read_buf->priv;
struct videobuf_vmalloc_memory *mem=q->read_buf->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

Expand Down Expand Up @@ -341,7 +339,7 @@ EXPORT_SYMBOL_GPL(videobuf_queue_vmalloc_init);

void *videobuf_to_vmalloc (struct videobuf_buffer *buf)
{
struct videbuf_vmalloc_memory *mem=buf->priv;
struct videobuf_vmalloc_memory *mem=buf->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

Expand All @@ -351,7 +349,7 @@ EXPORT_SYMBOL_GPL(videobuf_to_vmalloc);

void videobuf_vmalloc_free (struct videobuf_buffer *buf)
{
struct videbuf_vmalloc_memory *mem=buf->priv;
struct videobuf_vmalloc_memory *mem=buf->priv;
BUG_ON (!mem);

MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/media/videobuf-vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/* --------------------------------------------------------------------- */

struct videbuf_vmalloc_memory
struct videobuf_vmalloc_memory
{
u32 magic;

Expand Down

0 comments on commit 1cb09ba

Please sign in to comment.