1
0
Fork 0

[PATCH] v4l: 877: module em2820 renamed to em28xx and moved to v4l dir

- Module em2820 renamed to em28xx and moved to V4L dir.

Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
hifive-unleashed-5.1
Mauro Carvalho Chehab 2005-11-08 21:38:25 -08:00 committed by Linus Torvalds
parent c12097fd9a
commit f7abcd385c
5 changed files with 46 additions and 46 deletions

View File

@ -1,11 +1,10 @@
/* /*
em2820-cards.c - driver for Empia EM2800/EM2820/2840 USB video capture devices em28xx-cards.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
Copyright (C) 2005 Markus Rechberger <mrechberger@gmail.com> Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
Ludovico Cavedon <cavedon@sssup.it> Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab <mchehab@brturbo.com.br> Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Sascha Sommer <saschasommer@freenet.de>
Based on the em2800 driver from Sascha Sommer <saschasommer@freenet.de>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -33,7 +32,7 @@
#include <media/tveeprom.h> #include <media/tveeprom.h>
#include "msp3400.h" #include "msp3400.h"
#include "em2820.h" #include "em28xx.h"
struct em2820_board em2820_boards[] = { struct em2820_board em2820_boards[] = {
[EM2800_BOARD_UNKNOWN] = { [EM2800_BOARD_UNKNOWN] = {

View File

@ -1,11 +1,10 @@
/* /*
em2820-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices em2820-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
Copyright (C) 2005 Markus Rechberger <mrechberger@gmail.com> Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
Ludovico Cavedon <cavedon@sssup.it> Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab <mchehab@brturbo.com.br> Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Sascha Sommer <saschasommer@freenet.de>
Based on the em2800 driver from Sascha Sommer <saschasommer@freenet.de>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -29,7 +28,7 @@
#include <linux/usb.h> #include <linux/usb.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include "em2820.h" #include "em28xx.h"
/* #define ENABLE_DEBUG_ISOC_FRAMES */ /* #define ENABLE_DEBUG_ISOC_FRAMES */

View File

@ -1,11 +1,10 @@
/* /*
em2820-i2c.c - driver for Empia EM2800/EM2820/2840 USB video capture devices em28xx-i2c.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
Copyright (C) 2005 Markus Rechberger <mrechberger@gmail.com> Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
Ludovico Cavedon <cavedon@sssup.it> Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab <mchehab@brturbo.com.br> Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Sascha Sommer <saschasommer@freenet.de>
Based on the em2800 driver from Sascha Sommer <saschasommer@freenet.de>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -28,7 +27,7 @@
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/video_decoder.h> #include <linux/video_decoder.h>
#include "em2820.h" #include "em28xx.h"
#include <media/tuner.h> #include <media/tuner.h>
/* ----------------------------------------------------------- */ /* ----------------------------------------------------------- */

View File

@ -1,21 +1,24 @@
/* /*
* handle em28xx IR remotes via linux kernel input layer.
* handle saa7134 IR remotes via linux kernel input layer.
* Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
* This program is free software; you can redistribute it and/or modify Markus Rechberger <mrechberger@gmail.com>
* it under the terms of the GNU General Public License as published by Mauro Carvalho Chehab <mchehab@brturbo.com.br>
* the Free Software Foundation; either version 2 of the License, or Sascha Sommer <saschasommer@freenet.de>
* (at your option) any later version.
* This program is free software; you can redistribute it and/or modify
* This program is distributed in the hope that it will be useful, it under the terms of the GNU General Public License as published by
* but WITHOUT ANY WARRANTY; without even the implied warranty of the Free Software Foundation; either version 2 of the License, or
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the (at your option) any later version.
* GNU General Public License for more details.
* This program is distributed in the hope that it will be useful,
* You should have received a copy of the GNU General Public License but WITHOUT ANY WARRANTY; without even the implied warranty of
* along with this program; if not, write to the Free Software MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA GNU General Public License for more details.
*
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <linux/module.h> #include <linux/module.h>
@ -27,7 +30,7 @@
#include <linux/input.h> #include <linux/input.h>
#include <linux/usb.h> #include <linux/usb.h>
#include "em2820.h" #include "em28xx.h"
static unsigned int disable_ir = 0; static unsigned int disable_ir = 0;
module_param(disable_ir, int, 0444); module_param(disable_ir, int, 0444);

View File

@ -1,11 +1,10 @@
/* /*
em2820-video.c - driver for Empia EM2800/EM2820/2840 USB video capture devices em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
Copyright (C) 2005 Markus Rechberger <mrechberger@gmail.com> Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
Ludovico Cavedon <cavedon@sssup.it> Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab <mchehab@brturbo.com.br> Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Sascha Sommer <saschasommer@freenet.de>
Based on the em2800 driver from Sascha Sommer <saschasommer@freenet.de>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -30,15 +29,16 @@
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/video_decoder.h> #include <linux/video_decoder.h>
#include "em2820.h" #include "em28xx.h"
#include <media/tuner.h> #include <media/tuner.h>
#define DRIVER_AUTHOR "Markus Rechberger <mrechberger@gmail.com>, " \ #define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
"Ludovico Cavedon <cavedon@sssup.it>, " \ "Markus Rechberger <mrechberger@gmail.com>, " \
"Mauro Carvalho Chehab <mchehab@brturbo.com.br>" "Mauro Carvalho Chehab <mchehab@brturbo.com.br>, " \
"Sascha Sommer <saschasommer@freenet.de>"
#define DRIVER_NAME "em2820" #define DRIVER_NAME "em28xx"
#define DRIVER_DESC "Empia em2820 based USB video device driver" #define DRIVER_DESC "Empia em28xx based USB video device driver"
#define EM2820_VERSION_CODE KERNEL_VERSION(0, 0, 1) #define EM2820_VERSION_CODE KERNEL_VERSION(0, 0, 1)
#define em2820_videodbg(fmt, arg...) do {\ #define em2820_videodbg(fmt, arg...) do {\