/*
* Endpoints (formerly known as AOX) se401 USB Camera Driver
*
* Copyright (c) 2000 Jeroen B. Vreeken (pe1rxq@amsat.org)
*
* Still somewhat based on the Linux ov511 driver.
*
* 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 the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
* Thanks to Endpoints Inc. (www.endpoints.com) for making documentation on
* their chipset available and supporting me while writing this driver.
* - Jeroen Vreeken
*/
static const char version[] = "0.24";
#include <linux/module.h>
#include <linux/init.h>
#include <linux/vmalloc.h>
#include <linux/slab.h>
#include <linux/pagemap.h>
#include <linux/usb.h>
#include "se401.h"
static int flickerless;
static int video_nr = -1;
static struct usb_device_id device_table [] = {
{ USB_DEVICE(0x03e8, 0x0004) },/* Endpoints/Aox SE401 */
{ USB_DEVICE(0x0471, 0x030b) },/* Philips PCVC665K */
{ USB_DEVICE(0x047d, 0x5001) },/* Kensington 67014 */
{ USB_DEVICE(0x047d, 0x5002) },/* Kensington 6701(5/7) */
{ USB_DEVICE(0x047d, 0x5003) },/* Kensington 67016 */
{ }
};
MODULE_DEVICE_TABLE(usb, device_table);
MODULE_AUTHOR(