Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/v4l-dvb-saa716x/files: v4l-dvb-saa716x-Makefilepatch-2.diff OSD_RAW_CMD_patch_2.diff
Date: Sun, 31 Mar 2013 16:42:33
Message-Id: 20130331164230.2ECE02171E@flycatcher.gentoo.org
1 hd_brummy 13/03/31 16:42:30
2
3 Added: v4l-dvb-saa716x-Makefilepatch-2.diff
4 OSD_RAW_CMD_patch_2.diff
5 Log:
6 initial ebuild, taken from vdr-devel overlay
7
8 (Portage version: 2.1.11.50/cvs/Linux i686, signed Manifest commit with key 34C2808A)
9
10 Revision Changes Path
11 1.1 media-tv/v4l-dvb-saa716x/files/v4l-dvb-saa716x-Makefilepatch-2.diff
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/v4l-dvb-saa716x/files/v4l-dvb-saa716x-Makefilepatch-2.diff?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/v4l-dvb-saa716x/files/v4l-dvb-saa716x-Makefilepatch-2.diff?rev=1.1&content-type=text/plain
15
16 Index: v4l-dvb-saa716x-Makefilepatch-2.diff
17 ===================================================================
18 --- v4l-dvb-saa716x-cfa4b4faab67/linux/drivers/media/common/saa716x/Makefile.orig 2013-03-02 07:44:51.112642592 +0100
19 +++ v4l-dvb-saa716x-cfa4b4faab67/linux/drivers/media/common/saa716x/Makefile 2013-03-02 07:46:56.703138542 +0100
20 @@ -24,3 +24,5 @@
21 obj-$(CONFIG_DVB_SAA716X_FF) += saa716x_ff.o
22
23 EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ -Idrivers/media/dvb-core/ -Idrivers/media/dvb-frontends/
24 +EXTRA_CFLAGS += -Idrivers/media/common/tuners/ # up to kernel 3.6
25 +EXTRA_CFLAGS += -Idrivers/media/tuners/ # kernel 3.7+
26
27
28
29 1.1 media-tv/v4l-dvb-saa716x/files/OSD_RAW_CMD_patch_2.diff
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/v4l-dvb-saa716x/files/OSD_RAW_CMD_patch_2.diff?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/v4l-dvb-saa716x/files/OSD_RAW_CMD_patch_2.diff?rev=1.1&content-type=text/plain
33
34 Index: OSD_RAW_CMD_patch_2.diff
35 ===================================================================
36 --- linux/drivers/media/common/saa716x/saa716x_ff_cmd.h.orig 2011-11-12 14:46:51.175700236 +0100
37 +++ linux/drivers/media/common/saa716x/saa716x_ff_cmd.h 2011-11-12 14:45:10.103702959 +0100
38 @@ -1,6 +1,24 @@
39 #ifndef __SAA716x_FF_CMD_H
40 #define __SAA716x_FF_CMD_H
41
42 +#if !defined OSD_RAW_CMD
43 +typedef struct osd_raw_cmd_s {
44 + const void *cmd_data;
45 + int cmd_len;
46 + void *result_data;
47 + int result_len;
48 +} osd_raw_cmd_t;
49 +
50 +typedef struct osd_raw_data_s {
51 + const void *data_buffer;
52 + int data_length;
53 + int data_handle;
54 +} osd_raw_data_t;
55 +
56 +#define OSD_RAW_CMD _IOWR('o', 162, osd_raw_cmd_t)
57 +#define OSD_RAW_DATA _IOWR('o', 163, osd_raw_data_t)
58 +#endif
59 +
60 extern int sti7109_cmd_init(struct sti7109_dev *sti7109);
61 extern int sti7109_raw_cmd(struct sti7109_dev * sti7109,
62 osd_raw_cmd_t * cmd);