All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the moduleh tree with the staging.current tree
@ 2011-08-03  3:51 Stephen Rothwell
  2011-08-05  1:48   ` Paul Gortmaker
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2011-08-03  3:51 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: linux-next, linux-kernel, Andrew Morton, Greg KH

Hi Paul,

Today's linux-next merge of the moduleh tree got a conflict in
drivers/staging/dt3155v4l/dt3155v4l.c between commit dac95cb8cf40
("drivers/staging/dt3155v4l/dt3155v4l.c needs slab.h") from the
staging.current tree and commit 9e1049c45c01 ("staging: Add module.h to
drivers/staging users") from the moduleh tree.

Also note that commit 5c751107250f ("staging: fix implicit use of slab.h
in dt3155v4l/dt3155v4l.c") from the moduleh tree is a duplicate of the
above staging.current tree commit (with the include in a slightly
different spot.

I fixed it up (see below) anc can carry the fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc drivers/staging/dt3155v4l/dt3155v4l.c
index 05aa41c,024390b..0000000
--- a/drivers/staging/dt3155v4l/dt3155v4l.c
+++ b/drivers/staging/dt3155v4l/dt3155v4l.c
@@@ -21,8 -21,9 +21,9 @@@
  #include <linux/version.h>
  #include <linux/stringify.h>
  #include <linux/delay.h>
 -#include <linux/slab.h>
  #include <linux/kthread.h>
 +#include <linux/slab.h>
+ #include <linux/module.h>
  #include <media/v4l2-dev.h>
  #include <media/v4l2-ioctl.h>
  #include <media/videobuf2-dma-contig.h>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: linux-next: manual merge of the moduleh tree with the staging.current tree
  2011-08-03  3:51 linux-next: manual merge of the moduleh tree with the staging.current tree Stephen Rothwell
@ 2011-08-05  1:48   ` Paul Gortmaker
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Gortmaker @ 2011-08-05  1:48 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, linux-kernel, Andrew Morton, Greg KH

[linux-next: manual merge of the moduleh tree with the staging.current tree] On 03/08/2011 (Wed 13:51) Stephen Rothwell wrote:

> Hi Paul,
> 
> Today's linux-next merge of the moduleh tree got a conflict in
> drivers/staging/dt3155v4l/dt3155v4l.c between commit dac95cb8cf40
> ("drivers/staging/dt3155v4l/dt3155v4l.c needs slab.h") from the
> staging.current tree and commit 9e1049c45c01 ("staging: Add module.h to
> drivers/staging users") from the moduleh tree.
> 
> Also note that commit 5c751107250f ("staging: fix implicit use of slab.h
> in dt3155v4l/dt3155v4l.c") from the moduleh tree is a duplicate of the
> above staging.current tree commit (with the include in a slightly
> different spot.

I can easily relocate the include so #1 goes away, and drop the #2
if Greg now has it.  But since I would have to rebase to do both,
I'll hold off until it is 100% clear that Linus has decided to
defer this for 3.2-rc1 instead.  (He did mention two weeks ago that he
might take an extra couple days to catch up on merging stuff even after
the two week window for requesting it to be merged in had closed.)

Thanks,
Paul.

> 
> I fixed it up (see below) anc can carry the fix as necessary.
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> 
> diff --cc drivers/staging/dt3155v4l/dt3155v4l.c
> index 05aa41c,024390b..0000000
> --- a/drivers/staging/dt3155v4l/dt3155v4l.c
> +++ b/drivers/staging/dt3155v4l/dt3155v4l.c
> @@@ -21,8 -21,9 +21,9 @@@
>   #include <linux/version.h>
>   #include <linux/stringify.h>
>   #include <linux/delay.h>
>  -#include <linux/slab.h>
>   #include <linux/kthread.h>
>  +#include <linux/slab.h>
> + #include <linux/module.h>
>   #include <media/v4l2-dev.h>
>   #include <media/v4l2-ioctl.h>
>   #include <media/videobuf2-dma-contig.h>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: linux-next: manual merge of the moduleh tree with the staging.current tree
@ 2011-08-05  1:48   ` Paul Gortmaker
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Gortmaker @ 2011-08-05  1:48 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, linux-kernel, Andrew Morton, Greg KH

[linux-next: manual merge of the moduleh tree with the staging.current tree] On 03/08/2011 (Wed 13:51) Stephen Rothwell wrote:

> Hi Paul,
> 
> Today's linux-next merge of the moduleh tree got a conflict in
> drivers/staging/dt3155v4l/dt3155v4l.c between commit dac95cb8cf40
> ("drivers/staging/dt3155v4l/dt3155v4l.c needs slab.h") from the
> staging.current tree and commit 9e1049c45c01 ("staging: Add module.h to
> drivers/staging users") from the moduleh tree.
> 
> Also note that commit 5c751107250f ("staging: fix implicit use of slab.h
> in dt3155v4l/dt3155v4l.c") from the moduleh tree is a duplicate of the
> above staging.current tree commit (with the include in a slightly
> different spot.

I can easily relocate the include so #1 goes away, and drop the #2
if Greg now has it.  But since I would have to rebase to do both,
I'll hold off until it is 100% clear that Linus has decided to
defer this for 3.2-rc1 instead.  (He did mention two weeks ago that he
might take an extra couple days to catch up on merging stuff even after
the two week window for requesting it to be merged in had closed.)

Thanks,
Paul.

> 
> I fixed it up (see below) anc can carry the fix as necessary.
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> 
> diff --cc drivers/staging/dt3155v4l/dt3155v4l.c
> index 05aa41c,024390b..0000000
> --- a/drivers/staging/dt3155v4l/dt3155v4l.c
> +++ b/drivers/staging/dt3155v4l/dt3155v4l.c
> @@@ -21,8 -21,9 +21,9 @@@
>   #include <linux/version.h>
>   #include <linux/stringify.h>
>   #include <linux/delay.h>
>  -#include <linux/slab.h>
>   #include <linux/kthread.h>
>  +#include <linux/slab.h>
> + #include <linux/module.h>
>   #include <media/v4l2-dev.h>
>   #include <media/v4l2-ioctl.h>
>   #include <media/videobuf2-dma-contig.h>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-08-05  1:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-03  3:51 linux-next: manual merge of the moduleh tree with the staging.current tree Stephen Rothwell
2011-08-05  1:48 ` Paul Gortmaker
2011-08-05  1:48   ` Paul Gortmaker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.