aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Osciak <pawel@osciak.com>2011-03-13 14:23:32 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-22 03:55:05 -0400
commit950720840f392075b19d902e5ca7806a17a562cb (patch)
treef5871fae62d693354b1fa92ef2a35648392772ef
parentf0e3b646ccce66c9e878966227ce8415d3c11c2a (diff)
[media] Update Pawel Osciak's e-mail address
Signed-off-by: Pawel Osciak <pawel@osciak.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/video/mem2mem_testdev.c4
-rw-r--r--drivers/media/video/v4l2-mem2mem.c4
-rw-r--r--drivers/media/video/videobuf2-core.c4
-rw-r--r--drivers/media/video/videobuf2-dma-contig.c4
-rw-r--r--drivers/media/video/videobuf2-memops.c4
-rw-r--r--drivers/media/video/videobuf2-vmalloc.c4
-rw-r--r--include/media/v4l2-mem2mem.h2
-rw-r--r--include/media/videobuf2-core.h2
-rw-r--r--include/media/videobuf2-dma-contig.h2
-rw-r--r--include/media/videobuf2-memops.h2
-rw-r--r--include/media/videobuf2-vmalloc.h2
11 files changed, 17 insertions, 17 deletions
diff --git a/drivers/media/video/mem2mem_testdev.c b/drivers/media/video/mem2mem_testdev.c
index e1f96ea45bcb..b03d74e09a3c 100644
--- a/drivers/media/video/mem2mem_testdev.c
+++ b/drivers/media/video/mem2mem_testdev.c
@@ -8,7 +8,7 @@
8 * operation (via the mem2mem framework). 8 * operation (via the mem2mem framework).
9 * 9 *
10 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. 10 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
11 * Pawel Osciak, <p.osciak@samsung.com> 11 * Pawel Osciak, <pawel@osciak.com>
12 * Marek Szyprowski, <m.szyprowski@samsung.com> 12 * Marek Szyprowski, <m.szyprowski@samsung.com>
13 * 13 *
14 * This program is free software; you can redistribute it and/or modify 14 * This program is free software; you can redistribute it and/or modify
@@ -33,7 +33,7 @@
33#define MEM2MEM_TEST_MODULE_NAME "mem2mem-testdev" 33#define MEM2MEM_TEST_MODULE_NAME "mem2mem-testdev"
34 34
35MODULE_DESCRIPTION("Virtual device for mem2mem framework testing"); 35MODULE_DESCRIPTION("Virtual device for mem2mem framework testing");
36MODULE_AUTHOR("Pawel Osciak, <p.osciak@samsung.com>"); 36MODULE_AUTHOR("Pawel Osciak, <pawel@osciak.com>");
37MODULE_LICENSE("GPL"); 37MODULE_LICENSE("GPL");
38 38
39 39
diff --git a/drivers/media/video/v4l2-mem2mem.c b/drivers/media/video/v4l2-mem2mem.c
index a78e5c9be1a2..3b15bf5892a8 100644
--- a/drivers/media/video/v4l2-mem2mem.c
+++ b/drivers/media/video/v4l2-mem2mem.c
@@ -5,7 +5,7 @@
5 * source and destination. 5 * source and destination.
6 * 6 *
7 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. 7 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
8 * Pawel Osciak, <p.osciak@samsung.com> 8 * Pawel Osciak, <pawel@osciak.com>
9 * Marek Szyprowski, <m.szyprowski@samsung.com> 9 * Marek Szyprowski, <m.szyprowski@samsung.com>
10 * 10 *
11 * This program is free software; you can redistribute it and/or modify 11 * This program is free software; you can redistribute it and/or modify
@@ -21,7 +21,7 @@
21#include <media/v4l2-mem2mem.h> 21#include <media/v4l2-mem2mem.h>
22 22
23MODULE_DESCRIPTION("Mem to mem device framework for videobuf"); 23MODULE_DESCRIPTION("Mem to mem device framework for videobuf");
24MODULE_AUTHOR("Pawel Osciak, <p.osciak@samsung.com>"); 24MODULE_AUTHOR("Pawel Osciak, <pawel@osciak.com>");
25MODULE_LICENSE("GPL"); 25MODULE_LICENSE("GPL");
26 26
27static bool debug; 27static bool debug;
diff --git a/drivers/media/video/videobuf2-core.c b/drivers/media/video/videobuf2-core.c
index 3e9b67bd55b9..ce032255f3ee 100644
--- a/drivers/media/video/videobuf2-core.c
+++ b/drivers/media/video/videobuf2-core.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * Marek Szyprowski <m.szyprowski@samsung.com> 7 * Marek Szyprowski <m.szyprowski@samsung.com>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
@@ -1810,5 +1810,5 @@ size_t vb2_write(struct vb2_queue *q, char __user *data, size_t count,
1810EXPORT_SYMBOL_GPL(vb2_write); 1810EXPORT_SYMBOL_GPL(vb2_write);
1811 1811
1812MODULE_DESCRIPTION("Driver helper framework for Video for Linux 2"); 1812MODULE_DESCRIPTION("Driver helper framework for Video for Linux 2");
1813MODULE_AUTHOR("Pawel Osciak, Marek Szyprowski"); 1813MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>, Marek Szyprowski");
1814MODULE_LICENSE("GPL"); 1814MODULE_LICENSE("GPL");
diff --git a/drivers/media/video/videobuf2-dma-contig.c b/drivers/media/video/videobuf2-dma-contig.c
index bb6a5602cf94..90495b7b4ddf 100644
--- a/drivers/media/video/videobuf2-dma-contig.c
+++ b/drivers/media/video/videobuf2-dma-contig.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
@@ -181,5 +181,5 @@ void vb2_dma_contig_cleanup_ctx(void *alloc_ctx)
181EXPORT_SYMBOL_GPL(vb2_dma_contig_cleanup_ctx); 181EXPORT_SYMBOL_GPL(vb2_dma_contig_cleanup_ctx);
182 182
183MODULE_DESCRIPTION("DMA-contig memory handling routines for videobuf2"); 183MODULE_DESCRIPTION("DMA-contig memory handling routines for videobuf2");
184MODULE_AUTHOR("Pawel Osciak"); 184MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>");
185MODULE_LICENSE("GPL"); 185MODULE_LICENSE("GPL");
diff --git a/drivers/media/video/videobuf2-memops.c b/drivers/media/video/videobuf2-memops.c
index a3eb6567dea5..5370a3a7ee25 100644
--- a/drivers/media/video/videobuf2-memops.c
+++ b/drivers/media/video/videobuf2-memops.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * Marek Szyprowski <m.szyprowski@samsung.com> 7 * Marek Szyprowski <m.szyprowski@samsung.com>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
@@ -231,5 +231,5 @@ const struct vm_operations_struct vb2_common_vm_ops = {
231EXPORT_SYMBOL_GPL(vb2_common_vm_ops); 231EXPORT_SYMBOL_GPL(vb2_common_vm_ops);
232 232
233MODULE_DESCRIPTION("common memory handling routines for videobuf2"); 233MODULE_DESCRIPTION("common memory handling routines for videobuf2");
234MODULE_AUTHOR("Pawel Osciak"); 234MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>");
235MODULE_LICENSE("GPL"); 235MODULE_LICENSE("GPL");
diff --git a/drivers/media/video/videobuf2-vmalloc.c b/drivers/media/video/videobuf2-vmalloc.c
index b5e6936fb628..a3a884234059 100644
--- a/drivers/media/video/videobuf2-vmalloc.c
+++ b/drivers/media/video/videobuf2-vmalloc.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
@@ -128,5 +128,5 @@ const struct vb2_mem_ops vb2_vmalloc_memops = {
128EXPORT_SYMBOL_GPL(vb2_vmalloc_memops); 128EXPORT_SYMBOL_GPL(vb2_vmalloc_memops);
129 129
130MODULE_DESCRIPTION("vmalloc memory handling routines for videobuf2"); 130MODULE_DESCRIPTION("vmalloc memory handling routines for videobuf2");
131MODULE_AUTHOR("Pawel Osciak"); 131MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>");
132MODULE_LICENSE("GPL"); 132MODULE_LICENSE("GPL");
diff --git a/include/media/v4l2-mem2mem.h b/include/media/v4l2-mem2mem.h
index bf5eaaf3bd97..16ac4733e80d 100644
--- a/include/media/v4l2-mem2mem.h
+++ b/include/media/v4l2-mem2mem.h
@@ -5,7 +5,7 @@
5 * and destination. 5 * and destination.
6 * 6 *
7 * Copyright (c) 2009 Samsung Electronics Co., Ltd. 7 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
8 * Pawel Osciak, <p.osciak@samsung.com> 8 * Pawel Osciak, <pawel@osciak.com>
9 * Marek Szyprowski, <m.szyprowski@samsung.com> 9 * Marek Szyprowski, <m.szyprowski@samsung.com>
10 * 10 *
11 * This program is free software; you can redistribute it and/or modify 11 * This program is free software; you can redistribute it and/or modify
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h
index 597efe61a345..f87472acbc51 100644
--- a/include/media/videobuf2-core.h
+++ b/include/media/videobuf2-core.h
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
diff --git a/include/media/videobuf2-dma-contig.h b/include/media/videobuf2-dma-contig.h
index fb7ca849d993..1d6188d00efd 100644
--- a/include/media/videobuf2-dma-contig.h
+++ b/include/media/videobuf2-dma-contig.h
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
diff --git a/include/media/videobuf2-memops.h b/include/media/videobuf2-memops.h
index fee17033a728..84e1f6c031c5 100644
--- a/include/media/videobuf2-memops.h
+++ b/include/media/videobuf2-memops.h
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * Marek Szyprowski <m.szyprowski@samsung.com> 7 * Marek Szyprowski <m.szyprowski@samsung.com>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
diff --git a/include/media/videobuf2-vmalloc.h b/include/media/videobuf2-vmalloc.h
index a76b8afaa31e..93a76b43038d 100644
--- a/include/media/videobuf2-vmalloc.h
+++ b/include/media/videobuf2-vmalloc.h
@@ -3,7 +3,7 @@
3 * 3 *
4 * Copyright (C) 2010 Samsung Electronics 4 * Copyright (C) 2010 Samsung Electronics
5 * 5 *
6 * Author: Pawel Osciak <p.osciak@samsung.com> 6 * Author: Pawel Osciak <pawel@osciak.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by