]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/media/usb/pwc/pwc-dec1.h
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / drivers / media / usb / pwc / pwc-dec1.h
CommitLineData
1a59d1b8 1/* SPDX-License-Identifier: GPL-2.0-or-later */
2b455db6
LS
2/* Linux driver for Philips webcam
3 (C) 2004-2006 Luc Saillard (luc@saillard.org)
4
5 NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
6 driver and thus may have bugs that are not present in the original version.
7 Please send bug reports and support requests to <luc@saillard.org>.
8 The decompression routines have been implemented by reverse-engineering the
9 Nemosoft binary pwcx module. Caveat emptor.
10
2b455db6
LS
11*/
12
2b455db6
LS
13#ifndef PWC_DEC1_H
14#define PWC_DEC1_H
15
56ae24aa
HG
16#include <linux/mutex.h>
17
18struct pwc_device;
2b455db6
LS
19
20struct pwc_dec1_private
21{
22 int version;
2b455db6
LS
23};
24
24be689b 25void pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd);
2b455db6
LS
26
27#endif