12345678910111213141516171819 |
- /* SPDX-License-Identifier: GPL-2.0-or-later */
- /*
- ivtv firmware functions.
- Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
- Copyright (C) 2004 Chris Kennedy <[email protected]>
- Copyright (C) 2005-2007 Hans Verkuil <[email protected]>
- */
- #ifndef IVTV_FIRMWARE_H
- #define IVTV_FIRMWARE_H
- int ivtv_firmware_init(struct ivtv *itv);
- void ivtv_firmware_versions(struct ivtv *itv);
- void ivtv_halt_firmware(struct ivtv *itv);
- void ivtv_init_mpeg_decoder(struct ivtv *itv);
- int ivtv_firmware_check(struct ivtv *itv, char *where);
- #endif
|