mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
79a63c60a6
Loading the cypress firmware is not dvb specific and should be common functionality. Move the source to media/common and make it a standalone module. As a result we can remove the dependency on dvb-usb in go7007, which has nothing to do with dvb. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
29 lines
586 B
C
29 lines
586 B
C
/*
|
|
* Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@desy.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);
|
|
|
|
#endif
|