]> Git Repo - linux.git/blob - drivers/media/usb/pwc/pwc-dec1.c
Merge tag 'mfd-fixes-5.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
[linux.git] / drivers / media / usb / pwc / pwc-dec1.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Linux driver for Philips webcam
3    Decompression for chipset version 1
4    (C) 2004-2006 Luc Saillard ([email protected])
5
6    NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
7    driver and thus may have bugs that are not present in the original version.
8    Please send bug reports and support requests to <[email protected]>.
9    The decompression routines have been implemented by reverse-engineering the
10    Nemosoft binary pwcx module. Caveat emptor.
11
12 */
13 #include "pwc.h"
14
15 void pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd)
16 {
17         struct pwc_dec1_private *pdec = &pdev->dec1;
18
19         pdec->version = pdev->release;
20 }
This page took 0.038373 seconds and 4 git commands to generate.