/* * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@posteo.de) * see dvb-usb-init.c for copyright information. * * This file contains functions for downloading the firmware to Cypress FX 1 * and 2 based devices. * */ #ifndef CYPRESS_FIRMWARE_H #define CYPRESS_FIRMWARE_H #define CYPRESS_AN2135 0 #define CYPRESS_AN2235 1 #define CYPRESS_FX2 2 /* commonly used firmware download types and function */ struct hexline { u8 len; u32 addr; u8 type; u8 data[255]; u8 chk; }; int cypress_load_firmware(struct usb_device *, const struct firmware *, int); #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp | |
antti palosaari | antti palosaari | 58 | 96.67% | 2 | 50.00% |
hans verkuil | hans verkuil | 1 | 1.67% | 1 | 25.00% |
patrick boettcher | patrick boettcher | 1 | 1.67% | 1 | 25.00% |
Total | 60 | 100.00% | 4 | 100.00% |