18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
28c2ecf20Sopenharmony_ci/* Linux driver for Philips webcam
38c2ecf20Sopenharmony_ci   Decompression for chipset version 1
48c2ecf20Sopenharmony_ci   (C) 2004-2006 Luc Saillard (luc@saillard.org)
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci   NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
78c2ecf20Sopenharmony_ci   driver and thus may have bugs that are not present in the original version.
88c2ecf20Sopenharmony_ci   Please send bug reports and support requests to <luc@saillard.org>.
98c2ecf20Sopenharmony_ci   The decompression routines have been implemented by reverse-engineering the
108c2ecf20Sopenharmony_ci   Nemosoft binary pwcx module. Caveat emptor.
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci*/
138c2ecf20Sopenharmony_ci#include "pwc.h"
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_civoid pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd)
168c2ecf20Sopenharmony_ci{
178c2ecf20Sopenharmony_ci	struct pwc_dec1_private *pdec = &pdev->dec1;
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_ci	pdec->version = pdev->release;
208c2ecf20Sopenharmony_ci}
21