Path: blob/master/drivers/media/video/ivtv/ivtv-firmware.h
17956 views
/*1ivtv firmware functions.2Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>3Copyright (C) 2004 Chris Kennedy <[email protected]>4Copyright (C) 2005-2007 Hans Verkuil <[email protected]>56This program is free software; you can redistribute it and/or modify7it under the terms of the GNU General Public License as published by8the Free Software Foundation; either version 2 of the License, or9(at your option) any later version.1011This program is distributed in the hope that it will be useful,12but WITHOUT ANY WARRANTY; without even the implied warranty of13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14GNU General Public License for more details.1516You should have received a copy of the GNU General Public License17along with this program; if not, write to the Free Software18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/2021#ifndef IVTV_FIRMWARE_H22#define IVTV_FIRMWARE_H2324int ivtv_firmware_init(struct ivtv *itv);25void ivtv_firmware_versions(struct ivtv *itv);26void ivtv_halt_firmware(struct ivtv *itv);27void ivtv_init_mpeg_decoder(struct ivtv *itv);28int ivtv_firmware_check(struct ivtv *itv, char *where);2930#endif313233