* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2009-02-17 8:28 Stephen Rothwell
2009-02-17 11:35 ` Jiri Kosina
0 siblings, 1 reply; 16+ messages in thread
From: Stephen Rothwell @ 2009-02-17 8:28 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, Jean-Francois Moine, Mauro Carvalho Chehab,
Tobias Klauser
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/gspca/t613.c between commit
99a9fcc84dd6310b724f6dca684043f1cd33f00d ("V4L/DVB (10381): gspca - t613:
New unknown sensor added") from the v4l-dvb tree and commit
3c2e94a5fac4daac0bacd432ceeaff067957ee2b ("trivial: V4L: Storage class
should be before const qualifier") from the trivial tree.
Juts context changes. I fixed it up (see below) and can carry the fix as
necessary. Jiri, maybe some of these could be fed to the appropriate
maintainers?
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
diff --cc drivers/media/video/gspca/t613.c
index 0a1f4ef,8b8c029..0000000
--- a/drivers/media/video/gspca/t613.c
+++ b/drivers/media/video/gspca/t613.c
@@@ -264,50 -263,28 +264,50 @@@ static const struct v4l2_pix_format vga
/* sensor specific data */
struct additional_sensor_data {
- const __u8 data1[20];
- const __u8 data2[18];
- const __u8 data3[18];
- const __u8 data4[4];
- const __u8 data5[6];
- const __u8 stream[4];
+ const u8 data1[10];
+ const u8 data2[9];
+ const u8 data3[9];
+ const u8 data4[4];
+ const u8 data5[6];
+ const u8 stream[4];
};
- const static struct additional_sensor_data sensor_data[] = {
+ static const struct additional_sensor_data sensor_data[] = {
+ { /* OM6802 */
+ .data1 =
+ {0xc2, 0x28, 0x0f, 0x22, 0xcd, 0x27, 0x2c, 0x06,
+ 0xb3, 0xfc},
+ .data2 =
+ {0x80, 0xff, 0xff, 0x80, 0xff, 0xff, 0x80, 0xff,
+ 0xff},
+ .data4 = /*Freq (50/60Hz). Splitted for test purpose */
+ {0x66, 0xca, 0xa8, 0xf0},
+ .data5 = /* this could be removed later */
+ {0x0c, 0x03, 0xab, 0x13, 0x81, 0x23},
+ .stream =
+ {0x0b, 0x04, 0x0a, 0x78},
+ },
+ { /* OTHER */
+ .data1 =
+ {0xc1, 0x48, 0x04, 0x1b, 0xca, 0x2e, 0x33, 0x3a,
+ 0xe8, 0xfc},
+ .data2 =
+ {0x4e, 0x9c, 0xec, 0x40, 0x80, 0xc0, 0x48, 0x96,
+ 0xd9},
+ .data4 =
+ {0x66, 0x00, 0xa8, 0xa8},
+ .data5 =
+ {0x0c, 0x03, 0xab, 0x29, 0x81, 0x69},
+ .stream =
+ {0x0b, 0x04, 0x0a, 0x00},
+ },
{ /* TAS5130A */
.data1 =
- {0xd0, 0xbb, 0xd1, 0x28, 0xd2, 0x10, 0xd3, 0x10,
- 0xd4, 0xbb, 0xd5, 0x28, 0xd6, 0x1e, 0xd7, 0x27,
- 0xd8, 0xc8, 0xd9, 0xfc},
+ {0xbb, 0x28, 0x10, 0x10, 0xbb, 0x28, 0x1e, 0x27,
+ 0xc8, 0xfc},
.data2 =
- {0xe0, 0x60, 0xe1, 0xa8, 0xe2, 0xe0, 0xe3, 0x60,
- 0xe4, 0xa8, 0xe5, 0xe0, 0xe6, 0x60, 0xe7, 0xa8,
- 0xe8, 0xe0},
- .data3 =
- {0xc7, 0x60, 0xc8, 0xa8, 0xc9, 0xe0, 0xca, 0x60,
- 0xcb, 0xa8, 0xcc, 0xe0, 0xcd, 0x60, 0xce, 0xa8,
- 0xcf, 0xe0},
+ {0x60, 0xa8, 0xe0, 0x60, 0xa8, 0xe0, 0x60, 0xa8,
+ 0xe0},
.data4 = /* Freq (50/60Hz). Splitted for test purpose */
{0x66, 0x00, 0xa8, 0xe8},
.data5 =
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2009-02-17 8:28 Stephen Rothwell
@ 2009-02-17 11:35 ` Jiri Kosina
2009-02-17 12:24 ` Stephen Rothwell
0 siblings, 1 reply; 16+ messages in thread
From: Jiri Kosina @ 2009-02-17 11:35 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, Jean-Francois Moine, Mauro Carvalho Chehab,
Tobias Klauser
On Tue, 17 Feb 2009, Stephen Rothwell wrote:
> Today's linux-next merge of the trivial tree got a conflict in
> drivers/media/video/gspca/t613.c between commit
> 99a9fcc84dd6310b724f6dca684043f1cd33f00d ("V4L/DVB (10381): gspca - t613:
> New unknown sensor added") from the v4l-dvb tree and commit
> 3c2e94a5fac4daac0bacd432ceeaff067957ee2b ("trivial: V4L: Storage class
> should be before const qualifier") from the trivial tree.
>
> Juts context changes. I fixed it up (see below) and can carry the fix as
> necessary. Jiri, maybe some of these could be fed to the appropriate
> maintainers?
Hi Stephen,
yes, in fact I have pinged linux-media and other parties about that
yesterday [1]. When Mauro confirms that he picked it up, I will drop it
from trivial tree.
[1] http://www.mail-archive.com/linux-media@vger.kernel.org/msg01568.html
Thanks,
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2009-02-17 11:35 ` Jiri Kosina
@ 2009-02-17 12:24 ` Stephen Rothwell
2009-02-17 13:03 ` Mauro Carvalho Chehab
0 siblings, 1 reply; 16+ messages in thread
From: Stephen Rothwell @ 2009-02-17 12:24 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, Jean-Francois Moine, Mauro Carvalho Chehab,
Tobias Klauser
[-- Attachment #1: Type: text/plain, Size: 395 bytes --]
Hi Jiri,
On Tue, 17 Feb 2009 12:35:16 +0100 (CET) Jiri Kosina <jkosina@suse.cz> wrote:
>
> yes, in fact I have pinged linux-media and other parties about that
> yesterday [1]. When Mauro confirms that he picked it up, I will drop it
> from trivial tree.
Excellent, thanks.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2009-02-17 12:24 ` Stephen Rothwell
@ 2009-02-17 13:03 ` Mauro Carvalho Chehab
2009-02-17 13:07 ` Jiri Kosina
0 siblings, 1 reply; 16+ messages in thread
From: Mauro Carvalho Chehab @ 2009-02-17 13:03 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Jiri Kosina, linux-next, Jean-Francois Moine, Tobias Klauser
On Tue, 17 Feb 2009 23:24:41 +1100
Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi Jiri,
>
> On Tue, 17 Feb 2009 12:35:16 +0100 (CET) Jiri Kosina <jkosina@suse.cz> wrote:
> >
> > yes, in fact I have pinged linux-media and other parties about that
> > yesterday [1]. When Mauro confirms that he picked it up, I will drop it
> > from trivial tree.
>
> Excellent, thanks.
>
I've picked it. I was waiting for a fix at patchwork.kernel.org for pulling it.
Before that fix, a XMLRPC call were returning an empty set of patches, if one
of the patches on a query had any character upper #127 (non-ascii chars).
I'm currently updating linux-media tree with the pending patches.
--
Cheers,
Mauro
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2009-02-17 13:03 ` Mauro Carvalho Chehab
@ 2009-02-17 13:07 ` Jiri Kosina
0 siblings, 0 replies; 16+ messages in thread
From: Jiri Kosina @ 2009-02-17 13:07 UTC (permalink / raw)
To: Mauro Carvalho Chehab
Cc: Stephen Rothwell, linux-next, Jean-Francois Moine, Tobias Klauser
On Tue, 17 Feb 2009, Mauro Carvalho Chehab wrote:
> > > yes, in fact I have pinged linux-media and other parties about that
> > > yesterday [1]. When Mauro confirms that he picked it up, I will drop
> > > it from trivial tree.
> > Excellent, thanks.
> I've picked it. I was waiting for a fix at patchwork.kernel.org for pulling it.
> Before that fix, a XMLRPC call were returning an empty set of patches, if one
> of the patches on a query had any character upper #127 (non-ascii chars).
> I'm currently updating linux-media tree with the pending patches.
Thanks. I have dropped the 'const static' -> 'static const' for V4L code
from trivial tree.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2009-12-07 4:33 Stephen Rothwell
0 siblings, 0 replies; 16+ messages in thread
From: Stephen Rothwell @ 2009-12-07 4:33 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Adam Buchbinder, Andy Walls,
Mauro Carvalho Chehab
[-- Attachment #1: Type: text/plain, Size: 1360 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/cx18/cx18-mailbox.h between commit
368cb90a38d346d76cd32d882fbc620fc01e4102 ("V4L/DVB (13429): cx18: Add
Memory Descriptor List (MDL) layer to buffer handling") from the v4l-dvb
tree and commit 6070d81eb5f2d4943223c96e7609a53cdc984364 ("tree-wide: fix
misspelling of "definition" in comments") from the trivial tree.
I fixed it up (see below) and can carry the fix as necessary. It is very
trivial, though. :-)
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
diff --cc drivers/media/video/cx18/cx18-mailbox.h
index 5ea0735,522ad53..0000000
--- a/drivers/media/video/cx18/cx18-mailbox.h
+++ b/drivers/media/video/cx18/cx18-mailbox.h
@@@ -39,9 -39,9 +39,9 @@@
struct cx18;
/*
- * This structure is used by CPU to provide completed buffers information
- * Its structure is dictrated by the layout of the SCB, required by the
+ * This structure is used by CPU to provide completed MDL & buffers information.
+ * Its structure is dictated by the layout of the SCB, required by the
- * firmware, but its defintion needs to be here, instead of in cx18-scb.h,
+ * firmware, but its definition needs to be here, instead of in cx18-scb.h,
* for mailbox work order scheduling
*/
struct cx18_mdl_ack {
[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2010-07-06 5:25 Stephen Rothwell
2010-07-11 20:41 ` Jiri Kosina
0 siblings, 1 reply; 16+ messages in thread
From: Stephen Rothwell @ 2010-07-06 5:25 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Amerigo Wang, Mauro Carvalho Chehab,
"Uwe Kleine-König"
[-- Attachment #1: Type: text/plain, Size: 507 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/ov511.c between commit
b2bde15c455d09057dc7bd9f5b9ed67b9ac99b8a ("V4L/DVB: Remove obsolete ov511
driver") from the v4l-dvb tree and commit
421f91d21ad6f799dc7b489bb33cc560ccc56f98 ("fix typos concerning "initiali
[zs]e"") from the trivial tree.
The former just removes the file, so I removed it.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2010-07-06 5:25 Stephen Rothwell
@ 2010-07-11 20:41 ` Jiri Kosina
2010-07-12 4:15 ` Stephen Rothwell
0 siblings, 1 reply; 16+ messages in thread
From: Jiri Kosina @ 2010-07-11 20:41 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, linux-kernel, Amerigo Wang, Mauro Carvalho Chehab,
"Uwe Kleine-König"
On Tue, 6 Jul 2010, Stephen Rothwell wrote:
> Hi Jiri,
>
> Today's linux-next merge of the trivial tree got a conflict in
> drivers/media/video/ov511.c between commit
> b2bde15c455d09057dc7bd9f5b9ed67b9ac99b8a ("V4L/DVB: Remove obsolete ov511
> driver") from the v4l-dvb tree and commit
> 421f91d21ad6f799dc7b489bb33cc560ccc56f98 ("fix typos concerning "initiali
> [zs]e"") from the trivial tree.
>
> The former just removes the file, so I removed it.
Hi Stephen,
thanks for reporting it, I have reverted the drivers/media/video/ov511.c
hunk.
--
Jiri Kosina
SUSE Labs, Novell Inc.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2010-07-11 20:41 ` Jiri Kosina
@ 2010-07-12 4:15 ` Stephen Rothwell
0 siblings, 0 replies; 16+ messages in thread
From: Stephen Rothwell @ 2010-07-12 4:15 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Amerigo Wang, Mauro Carvalho Chehab,
"Uwe Kleine-König"
[-- Attachment #1: Type: text/plain, Size: 301 bytes --]
Hi Jiri,
On Sun, 11 Jul 2010 22:41:48 +0200 (CEST) Jiri Kosina <jkosina@suse.cz> wrote:
>
> thanks for reporting it, I have reverted the drivers/media/video/ov511.c
> hunk.
Thanks.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2010-12-28 0:44 Stephen Rothwell
0 siblings, 0 replies; 16+ messages in thread
From: Stephen Rothwell @ 2010-12-28 0:44 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Hans Verkuil, Mauro Carvalho Chehab,
"Uwe Kleine-König"
[-- Attachment #1: Type: text/plain, Size: 559 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/zoran/zoran.h between commit
8221f9b5fa3e08ba35378f08f2a606156e685916 ("[media] zoran: remove V4L1
compat code and zoran custom ioctls") from the v4l-dvb tree and commit
b595076a180a56d1bb170e6eceda6eb9d76f4cd3 ("tree-wide: fix comment/printk
typos") from the trivial tree.
The former removed the code modified by the latter, so I used the former.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2010-12-28 0:47 Stephen Rothwell
2010-12-28 13:18 ` Jiri Kosina
0 siblings, 1 reply; 16+ messages in thread
From: Stephen Rothwell @ 2010-12-28 0:47 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Hans Verkuil, Mauro Carvalho Chehab,
"Uwe Kleine-König"
[-- Attachment #1: Type: text/plain, Size: 551 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/staging/stradis/stradis.c between commit
aef01debdfad83ab71a83b7af8cd90203404c1aa ("[media] cpia, stradis: remove
deprecated V4L1 drivers") from the v4l-dvb tree and commit
b595076a180a56d1bb170e6eceda6eb9d76f4cd3 ("tree-wide: fix comment/printk
typos") from the trivial tree.
The former removed the file modified by the latter, so I removed the file.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2010-12-28 0:47 Stephen Rothwell
@ 2010-12-28 13:18 ` Jiri Kosina
0 siblings, 0 replies; 16+ messages in thread
From: Jiri Kosina @ 2010-12-28 13:18 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, linux-kernel, Hans Verkuil, Mauro Carvalho Chehab,
Uwe Kleine-König
On Tue, 28 Dec 2010, Stephen Rothwell wrote:
> Hi Jiri,
>
> Today's linux-next merge of the trivial tree got a conflict in
> drivers/media/video/zoran/zoran.h between commit
> 8221f9b5fa3e08ba35378f08f2a606156e685916 ("[media] zoran: remove V4L1
> compat code and zoran custom ioctls") from the v4l-dvb tree and commit
> b595076a180a56d1bb170e6eceda6eb9d76f4cd3 ("tree-wide: fix comment/printk
> typos") from the trivial tree.
>
> The former removed the code modified by the latter, so I used the former.
On Tue, 28 Dec 2010, Stephen Rothwell wrote:
> Hi Jiri,
>
> Today's linux-next merge of the trivial tree got a conflict in
> drivers/staging/stradis/stradis.c between commit
> aef01debdfad83ab71a83b7af8cd90203404c1aa ("[media] cpia, stradis: remove
> deprecated V4L1 drivers") from the v4l-dvb tree and commit
> b595076a180a56d1bb170e6eceda6eb9d76f4cd3 ("tree-wide: fix comment/printk
> typos") from the trivial tree.
>
> The former removed the file modified by the latter, so I removed the file.
Hi Stephen,
I have dropped both hunks, so the conflict should be gone now.
Thanks,
--
Jiri Kosina
SUSE Labs, Novell Inc.
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2011-09-27 4:23 Stephen Rothwell
0 siblings, 0 replies; 16+ messages in thread
From: Stephen Rothwell @ 2011-09-27 4:23 UTC (permalink / raw)
To: Jiri Kosina; +Cc: linux-next, linux-kernel, Joe Perches
[-- Attachment #1: Type: text/plain, Size: 521 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/s5p-fimc/fimc-capture.c between commit 2319c539e39b
("[media] s5p-fimc: Remove sensor management code from FIMC capture
driver") from the v4l-dvb tree and commit 18df7b82e25c ("treewide:
Correct spelling of successfully in comments") from the trivial tree.
The former removed the code that the latter modified.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2012-02-29 3:33 Stephen Rothwell
2012-03-01 8:28 ` Jiri Kosina
0 siblings, 1 reply; 16+ messages in thread
From: Stephen Rothwell @ 2012-02-29 3:33 UTC (permalink / raw)
To: Jiri Kosina
Cc: linux-next, linux-kernel, Masanari Iida, Mauro Carvalho Chehab
[-- Attachment #1: Type: text/plain, Size: 476 bytes --]
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in
drivers/media/video/s5p-tv/hdmi_drv.c due to commit 382d19f197f9 ("media:
Fix typo in mixer_drv.c and hdmi_drv.c") from the trivial tree also
already existing in the v4l-dvb tree (same patch different commit) (and
there are further changes in that tree to this file).
I just the used the version from the v4l-dvb tree.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: linux-next: manual merge of the trivial tree with the v4l-dvb tree
2012-02-29 3:33 Stephen Rothwell
@ 2012-03-01 8:28 ` Jiri Kosina
0 siblings, 0 replies; 16+ messages in thread
From: Jiri Kosina @ 2012-03-01 8:28 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, linux-kernel, Masanari Iida, Mauro Carvalho Chehab
On Wed, 29 Feb 2012, Stephen Rothwell wrote:
> Hi Jiri,
>
> Today's linux-next merge of the trivial tree got a conflict in
> drivers/media/video/s5p-tv/hdmi_drv.c due to commit 382d19f197f9 ("media:
> Fix typo in mixer_drv.c and hdmi_drv.c") from the trivial tree also
> already existing in the v4l-dvb tree (same patch different commit) (and
> there are further changes in that tree to this file).
>
> I just the used the version from the v4l-dvb tree.
Reverted now in my tree, thanks.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 16+ messages in thread
* linux-next: manual merge of the trivial tree with the v4l-dvb tree
@ 2015-08-18 3:58 Stephen Rothwell
0 siblings, 0 replies; 16+ messages in thread
From: Stephen Rothwell @ 2015-08-18 3:58 UTC (permalink / raw)
To: Jiri Kosina, Mauro Carvalho Chehab
Cc: linux-next, linux-kernel, Masahiro Yamada, Jan Kara
Hi Jiri,
Today's linux-next merge of the trivial tree got a conflict in:
drivers/media/v4l2-core/videobuf2-memops.c
between commit:
6690c8c78c74 ("[media] media: vb2: Remove unused functions")
from the v4l-dvb tree and commit:
e1c05067c323 ("treewide: fix typos in comment blocks")
from the trivial tree.
I fixed it up (the former removed the code modified by the latter)
and can carry the fix as necessary (no action is required).
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2015-08-18 3:58 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-18 3:58 linux-next: manual merge of the trivial tree with the v4l-dvb tree Stephen Rothwell
-- strict thread matches above, loose matches on Subject: below --
2012-02-29 3:33 Stephen Rothwell
2012-03-01 8:28 ` Jiri Kosina
2011-09-27 4:23 Stephen Rothwell
2010-12-28 0:47 Stephen Rothwell
2010-12-28 13:18 ` Jiri Kosina
2010-12-28 0:44 Stephen Rothwell
2010-07-06 5:25 Stephen Rothwell
2010-07-11 20:41 ` Jiri Kosina
2010-07-12 4:15 ` Stephen Rothwell
2009-12-07 4:33 Stephen Rothwell
2009-02-17 8:28 Stephen Rothwell
2009-02-17 11:35 ` Jiri Kosina
2009-02-17 12:24 ` Stephen Rothwell
2009-02-17 13:03 ` Mauro Carvalho Chehab
2009-02-17 13:07 ` Jiri Kosina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).