All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the usb tree with the trivial tree
@ 2010-09-02  3:01 Stephen Rothwell
  2010-09-02  3:26 ` Greg KH
  0 siblings, 1 reply; 12+ messages in thread
From: Stephen Rothwell @ 2010-09-02  3:01 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-next, linux-kernel, JiebingLi, Joe Perches, Jiri Kosina

Hi Greg,

Today's linux-next merge of the usb tree got a conflict in
drivers/usb/gadget/langwell_udc.c between commit
7f26b3a7533bbc1ddd88b297c935ee4da8f74cea ("drivers/usb: Remove
unnecessary return's from void functions") from the trivial tree and
commit 0f92bbacd2d1a26e8bf863d2cc05572df43bf7fb ("USB: langwell: USB
Client driver code cleanup") from the usb tree.

Just context changes.  I fixed it up (see below) and can carry the fix
while necessary.  Though, if that trivial tree commit was in the usb tree,
the conflict could be resolved there ...
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc drivers/usb/gadget/langwell_udc.c
index d41b69c,1ef17a6..0000000
--- a/drivers/usb/gadget/langwell_udc.c
+++ b/drivers/usb/gadget/langwell_udc.c
@@@ -283,7 -253,8 +253,7 @@@ static void ep0_reset(struct langwell_u
  		ep_reset(&dev->ep[0], 0, i, USB_ENDPOINT_XFER_CONTROL);
  	}
  
- 	VDBG(dev, "<--- %s()\n", __func__);
+ 	dev_vdbg(&dev->pdev->dev, "<--- %s()\n", __func__);
 -	return;
  }
  
  
@@@ -1484,7 -1501,8 +1500,7 @@@ static void langwell_udc_start(struct l
  	usbcmd |= CMD_RUNSTOP;
  	writel(usbcmd, &dev->op_regs->usbcmd);
  
- 	DBG(dev, "<--- %s()\n", __func__);
+ 	dev_dbg(&dev->pdev->dev, "<--- %s()\n", __func__);
 -	return;
  }
  
  
@@@ -1506,7 -1524,8 +1522,7 @@@ static void langwell_udc_stop(struct la
  	usbcmd &= ~CMD_RUNSTOP;
  	writel(usbcmd, &dev->op_regs->usbcmd);
  
- 	DBG(dev, "<--- %s()\n", __func__);
+ 	dev_dbg(&dev->pdev->dev, "<--- %s()\n", __func__);
 -	return;
  }
  
  

^ permalink raw reply	[flat|nested] 12+ messages in thread
* linux-next: manual merge of the usb tree with the trivial tree
@ 2010-09-14  2:28 Stephen Rothwell
  2010-09-14  4:08 ` Greg KH
  0 siblings, 1 reply; 12+ messages in thread
From: Stephen Rothwell @ 2010-09-14  2:28 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-next, linux-kernel, Joe Perches, Jiri Kosina, Mihai Donțu

Hi Greg,

Today's linux-next merge of the usb tree got a conflict in
drivers/usb/gadget/rndis.c between commit
7f26b3a7533bbc1ddd88b297c935ee4da8f74cea ("drivers/usb: Remove
unnecessary return's from void functions") from the trivial tree and
commit c8feb3bad134f927a624cc19da13f57627b905e2 ("USB: gadget: rndis: fix
up coding style issues in the file") from the usb tree.

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

diff --cc drivers/usb/gadget/rndis.c
index 33a9475,6a7dd91..0000000
--- a/drivers/usb/gadget/rndis.c
+++ b/drivers/usb/gadget/rndis.c
@@@ -914,12 -912,14 +912,12 @@@ int rndis_register(void (*resp_avail)(v
  	return -ENODEV;
  }
  
- void rndis_deregister (int configNr)
+ void rndis_deregister(int configNr)
  {
- 	pr_debug("%s: \n", __func__);
+ 	pr_debug("%s:\n", __func__);
  
  	if (configNr >= RNDIS_MAX_CONFIGS) return;
- 	rndis_per_dev_params [configNr].used = 0;
+ 	rndis_per_dev_params[configNr].used = 0;
 -
 -	return;
  }
  
  int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter)

^ permalink raw reply	[flat|nested] 12+ messages in thread
* linux-next: manual merge of the usb tree with the trivial tree
@ 2010-10-06  3:14 Stephen Rothwell
  2010-10-06  3:35 ` Greg KH
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Stephen Rothwell @ 2010-10-06  3:14 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-next, linux-kernel, Joe Perches, Jiri Kosina,
	Sergei Shtylyov, Felipe Balbi

[-- Attachment #1: Type: text/plain, Size: 575 bytes --]

Hi Greg,

Today's linux-next merge of the usb tree got a conflict in
drivers/usb/musb/musb_gadget.c between commit
7f26b3a7533bbc1ddd88b297c935ee4da8f74cea ("drivers/usb: Remove
unnecessary return's from void functions") from the trivial tree and
commit 82cccbf2458e50dabf8b9946b3f0ef0e8d31711f ("usb: musb: gadget: kill
unreachable code in musb_g_rx()") from the usb tree.

The latter also fixes the problem fixed in the former, so I just used the
latter.
-- 
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] 12+ messages in thread

end of thread, other threads:[~2010-10-07  7:39 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-02  3:01 linux-next: manual merge of the usb tree with the trivial tree Stephen Rothwell
2010-09-02  3:26 ` Greg KH
2010-09-02 14:34   ` Jiri Kosina
2010-09-02 20:06     ` Greg KH
2010-09-14  2:28 Stephen Rothwell
2010-09-14  4:08 ` Greg KH
2010-10-06  3:14 Stephen Rothwell
2010-10-06  3:35 ` Greg KH
2010-10-06  6:19 ` Felipe Balbi
2010-10-06 14:05   ` Greg KH
2010-10-07  7:39     ` Felipe Balbi
2010-10-06  9:36 ` Jiri Kosina

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.