brintos

brintos / linux-shallow public Read only

0
0
Text · 561 B · 393e94a Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3    ivtv firmware functions.4    Copyright (C) 2003-2004  Kevin Thayer <nufan_wfk at yahoo.com>5    Copyright (C) 2004  Chris Kennedy <c@groovy.org>6    Copyright (C) 2005-2007  Hans Verkuil <hverkuil@xs4all.nl>7 8 */9 10#ifndef IVTV_FIRMWARE_H11#define IVTV_FIRMWARE_H12 13int ivtv_firmware_init(struct ivtv *itv);14void ivtv_firmware_versions(struct ivtv *itv);15void ivtv_halt_firmware(struct ivtv *itv);16void ivtv_init_mpeg_decoder(struct ivtv *itv);17int ivtv_firmware_check(struct ivtv *itv, char *where);18 19#endif20