cfq-iosched: fix use-after-free of cfqq
[deliverable/linux.git] / drivers / staging / media / as102 / as102_fw.h
1 /*
2 * Abilis Systems Single DVB-T Receiver
3 * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 #define MAX_FW_PKT_SIZE 64
20
21 extern int dual_tuner;
22
23 #pragma pack(1)
24 struct as10x_raw_fw_pkt {
25 unsigned char address[4];
26 unsigned char data[MAX_FW_PKT_SIZE - 6];
27 };
28
29 struct as10x_fw_pkt_t {
30 union {
31 unsigned char request[2];
32 unsigned char length[2];
33 } u;
34 struct as10x_raw_fw_pkt raw;
35 };
36 #pragma pack()
37
38 #ifdef __KERNEL__
39 int as102_fw_upload(struct as102_bus_adapter_t *bus_adap);
40 #endif
41
42 /* EOF - vim: set textwidth=80 ts=8 sw=8 sts=8 noet: */
This page took 0.03366 seconds and 5 git commands to generate.