linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: manual merge of the ttydev tree
@ 2008-08-19  7:43 Stephen Rothwell
  2008-08-19 19:57 ` Greg KH
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-19  7:43 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/safe_serial.c between commit
8aac48f4f2460b00468fd5f1101addf3df04e94c ("USB: remove info() macro from
usb.h") from the usb tree and commit
5e6c4a742d494b0b049d7f01ce00da5b351d2cb8 ("tty-usbserial-kref") from the
ttydev tree.

These changes modify each others context.  I fixed it up (see below) and
can carry the fix.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --cc drivers/usb/serial/safe_serial.c
index e1f10a1,72903ac..0000000
--- a/drivers/usb/serial/safe_serial.c
+++ b/drivers/usb/serial/safe_serial.c
@@@ -248,11 -250,11 +250,11 @@@ static void safe_read_bulk_callback(str
  		if (!fcs) {
  			int actual_length = data[length - 2] >> 2;
  			if (actual_length <= (length - 2)) {
 -				info("%s - actual: %d", __func__,
 -							actual_length);
 +				dev_info(&urb->dev->dev, "%s - actual: %d\n",
 +					 __func__, actual_length);
- 				tty_insert_flip_string(port->port.tty,
+ 				tty_insert_flip_string(tty,
  							data, actual_length);
- 				tty_flip_buffer_push(port->port.tty);
+ 				tty_flip_buffer_push(tty);
  			} else {
  				err("%s - inconsistent lengths %d:%d",
  					__func__, actual_length, length);

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-12-11  6:26 Stephen Rothwell
  2008-12-11 10:21 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-12-11  6:26 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Dan Williams, David Daney

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/serial/8250.c between commit
507ce132910803e8fd1116467e99f59da3d526f0 ("iop13xx: workaround errata
that causes uart interrupts to be missed") from the async_tx tree and
commit 63c4074301f79f1620d6c880973d6ef1cc770990
("tty-serial-8250-regops") from the ttydev tree.

I have reverted the async_tx commit for today. Please try to figure out
what should happen here.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-09-19  2:57 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-09-19  2:57 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/sierra.c between commit
4d7b9fc74ab5086b0ccc1f3dc28617c552263b7a ("USB Serial: Sierra: debug
message fix") from the usb tree and commit
6ae0d6ddae605af245c472aa574e2b4f834ce69c ("tty-usbserial-kref") from the
ttydev tree.

Just context modification.  I fixed it up (see below).
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --cc drivers/usb/serial/sierra.c
index 1a37286,7d9ab12..0000000
--- a/drivers/usb/serial/sierra.c
+++ b/drivers/usb/serial/sierra.c
@@@ -438,18 -435,17 +438,18 @@@ static void sierra_indat_callback(struc
  	port =  urb->context;
  
  	if (status) {
 -		dbg("%s: nonzero status: %d on endpoint %02x.",
 -		    __func__, status, endpoint);
 +		dev_dbg(&port->dev, "%s: nonzero status: %d on"
 +		    " endpoint %02x.", __func__, status, endpoint);
  	} else {
- 		tty = port->port.tty;
  		if (urb->actual_length) {
+ 		tty = tty_port_tty_get(&port->port);
  			tty_buffer_request_room(tty, urb->actual_length);
  			tty_insert_flip_string(tty, data, urb->actual_length);
  			tty_flip_buffer_push(tty);
- 		} else {
+ 			tty_kref_put(tty);
+ 		} else
 -			dbg("%s: empty read urb received", __func__);
 +			dev_dbg(&port->dev, "%s: empty read urb"
 +				" received", __func__);
- 		}
  
  		/* Resubmit urb so we continue receiving */
  		if (port->port.count && status != -ESHUTDOWN) {
@@@ -489,9 -483,9 +489,10 @@@ static void sierra_instat_callback(stru
  			unsigned char signals = *((unsigned char *)
  					urb->transfer_buffer +
  					sizeof(struct usb_ctrlrequest));
+ 			struct tty_struct *tty;
  
 -			dbg("%s: signal x%x", __func__, signals);
 +			dev_dbg(&port->dev, "%s: signal x%x", __func__,
 +				signals);
  
  			old_dcd_state = portdata->dcd_state;
  			portdata->cts_state = 1;
@@@ -499,16 -493,17 +500,18 @@@
  			portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
  			portdata->ri_state = ((signals & 0x08) ? 1 : 0);
  
- 			if (port->port.tty && !C_CLOCAL(port->port.tty) &&
+ 			tty = tty_port_tty_get(&port->port);
+ 			if (tty && !C_CLOCAL(tty) &&
  					old_dcd_state && !portdata->dcd_state)
- 				tty_hangup(port->port.tty);
+ 				tty_hangup(tty);
+ 			tty_kref_put(tty);
  		} else {
 -			dbg("%s: type %x req %x", __func__,
 -				req_pkt->bRequestType, req_pkt->bRequest);
 +			dev_dbg(&port->dev, "%s: type %x req %x",
 +				__func__, req_pkt->bRequestType,
 +				req_pkt->bRequest);
  		}
  	} else
 -		dbg("%s: error %d", __func__, status);
 +		dev_dbg(&port->dev, "%s: error %d", __func__, status);
  
  	/* Resubmit urb so we continue receiving IRQ data */
  	if (status != -ESHUTDOWN) {

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-09-19  2:53 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-09-19  2:53 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/char/ip2/ip2main.c between commit
64dd9a65b282990a82d5ca0459e0be291f00270c ("device create: char: convert
device_create_drvdata to device_create") from the driver-core tree and
commit f9d65d9f1b0ad12c71771e1c47fb585da1f19818 ("ip2-cleanup-init") from
the ttydev tree.

I fixed it up (see below).
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --cc drivers/char/ip2/ip2main.c
index e215e0c,6774572..0000000
--- a/drivers/char/ip2/ip2main.c
+++ b/drivers/char/ip2/ip2main.c
@@@ -705,23 -731,24 +731,24 @@@ static int __init ip2_loadmain(void
  	/* Register the read_procmem thing */
  	if (!proc_create("ip2mem",0,NULL,&ip2mem_proc_fops)) {
  		printk(KERN_ERR "IP2: failed to register read_procmem\n");
- 	} else {
+ 		return -EIO; /* leaking resources */
+ 	}
  
- 	ip2trace (ITRC_NO_PORT, ITRC_INIT, 4, 0 );
- 		/* Register the interrupt handler or poll handler, depending upon the
- 		 * specified interrupt.
- 		 */
+ 	ip2trace(ITRC_NO_PORT, ITRC_INIT, 4, 0);
+ 	/* Register the interrupt handler or poll handler, depending upon the
+ 	 * specified interrupt.
+ 	 */
  
- 		for( i = 0; i < IP2_MAX_BOARDS; ++i ) {
- 			if ( 0 == ip2config.addr[i] ) {
- 				continue;
- 			}
+ 	for (i = 0; i < IP2_MAX_BOARDS; ++i) {
+ 		if (ip2config.addr[i] == 0)
+ 			continue;
  
- 			if ( NULL != ( pB = i2BoardPtrTable[i] ) ) {
- 				device_create(ip2_class, NULL,
+ 		pB = i2BoardPtrTable[i];
+ 		if (pB != NULL) {
 -			device_create_drvdata(ip2_class, NULL,
++			device_create(ip2_class, NULL,
  					      MKDEV(IP2_IPL_MAJOR, 4 * i),
  					      NULL, "ipl%d", i);
- 				device_create(ip2_class, NULL,
 -			device_create_drvdata(ip2_class, NULL,
++			device_create(ip2_class, NULL,
  					      MKDEV(IP2_IPL_MAJOR, 4 * i + 1),
  					      NULL, "stat%d", i);
  

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-25  8:33 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-25  8:33 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/char/tty_io.c between commit
e9b4b8816d7516318a3472f600ad9734e300c7bc ("device create: char: convert
device_create_drvdata to device_create") from the driver-core tree and
commit ee32c06e38600122f51aca2de893d1027251719a
("tty-move-special-cases") from the ttydev tree.

The latter moved some code that the former modified
(device_create_drvdata -> device_create changes).

I basically just used the version from the ttydev tree.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-25  8:24 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-25  8:24 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Jiri Slaby, Jiri Kosina

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
Documentation/feature-removal-schedule.txt between commit
9bfd67f96a92f8853e77e028acfa93e737ffe2ad ("HID: add compat support") from
the hid tree and commit 4895f0191a229a864c701c5f38a967fbdd15a0e0
("mcfserial-goes-byebye") from the ttydev tree.

Just an overlapping add/remove.  I fixed it up (see below) and can carry
it.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --cc Documentation/feature-removal-schedule.txt
index 81fc817,7781bf8..0000000
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@@ -265,22 -265,7 +265,14 @@@ Why:	replaced by allowdac and no dac co
  Who:	Glauber Costa <gcosta@redhat.com>
  
  ---------------------------
- 
- What:	old style serial driver for ColdFire (CONFIG_SERIAL_COLDFIRE)
- When:	2.6.28
- Why:	This driver still uses the old interface and has been replaced
- 	by CONFIG_SERIAL_MCF.
- Who:	Sebastian Siewior <sebastian@breakpoint.cc>
- 
- ---------------------------
  
 +What:	remove HID compat support
 +When:	2.6.29
 +Why:	needed only as a temporary solution until distros fix themselves up
 +Who:	Jiri Slaby <jirislaby@gmail.com>
 +
 +---------------------------
 +
  What:	/sys/o2cb symlink
  When:	January 2010
  Why:	/sys/fs/o2cb is the proper location for this information - /sys/o2cb

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-22  5:51 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-22  5:51 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/char/tty_io.c between commit
e9b4b8816d7516318a3472f600ad9734e300c7bc ("device create: char: convert
device_create_drvdata to device_create") from the driver-core tree and
commit 05d425154eb1c1c053be5e54dcc4b1db36b15d3b("tty-move-special-cases")
from the ttydev tree.

The former renamed a function used in the code that the latter moved.  I
fixed it up (see below).

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --git a/drivers/char/pty.c b/drivers/char/pty.c
index af2ab67..328e8ac 100644
--- a/drivers/char/pty.c
+++ b/drivers/char/pty.c
@@ -535,7 +535,7 @@ static void __init unix98_pty_init(void)
 	if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
 	    register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
 		panic("Couldn't register /dev/ptmx driver\n");
-	device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
+	device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
 }
 
 #else
diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 06a840d..2ec7bfe 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -2931,7 +2931,7 @@ int __init vty_init(const struct file_operations *console_fops)
 	if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
 	    register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
 		panic("Couldn't register /dev/tty0 driver\n");
-	device_create_drvdata(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
+	device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
 
 	vcs_init();
 

^ permalink raw reply related	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-21  8:03 Stephen Rothwell
  2008-08-21 10:21 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-21  8:03 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

Hi Alan,

Today's linux-next merge of the ttydev tree got trivial conflicts in
drivers/usb/serial/aircable.c and drivers/usb/serial/keyspan_pda.c
between commit 7b4dc5ed3acb8410fd078a6876d01c206af803ed ("USB: remove use
of err() in drivers/usb/serial") from the usb tree and commit
9c3656d0341bc2763b3f4abc9484776ff28c1c12 ("tty-usbserial-kref") from the
ttydev tree.

Just overlapping context of changes. I fixed it up (see below).  I assume
that the err -> dev_err changes could be added to your tree, Alan.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

diff --cc drivers/usb/serial/aircable.c
index 27ea680,67dc982..0000000
--- a/drivers/usb/serial/aircable.c
+++ b/drivers/usb/serial/aircable.c
@@@ -287,9 -287,8 +287,9 @@@ static void aircable_read(struct work_s
  
  	tty_prepare_flip_string(tty, &data, count);
  	if (!data) {
 -		err("%s- kzalloc(%d) failed.", __func__, count);
 +		dev_err(&port->dev, "%s- kzalloc(%d) failed.\n",
 +			__func__, count);
- 		return;
+ 		goto out;
  	}
  
  	serial_buf_get(priv->rx_buf, data, count);
diff --cc drivers/usb/serial/keyspan_pda.c
index 507f8bd,d799883..0000000
--- a/drivers/usb/serial/keyspan_pda.c
+++ b/drivers/usb/serial/keyspan_pda.c
@@@ -261,9 -262,10 +262,11 @@@ static void keyspan_pda_rx_interrupt(st
  exit:
  	retval = usb_submit_urb(urb, GFP_ATOMIC);
  	if (retval)
 -		err("%s - usb_submit_urb failed with result %d",
 -		     __func__, retval);
 +		dev_err(&port->dev,
 +			"%s - usb_submit_urb failed with result %d\n",
 +			__func__, retval);
+ out:
+ 	tty_kref_put(tty);		     
  }
  
  

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-18  6:08 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-18  6:08 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/char/tty_io.c between commit
8c9a9dd0fa3a269d380eaae2dc1bee39e865fae1 ("tty: remove resize window
special case") from Linus' tree (which appears to also be in the ttydev
tree as "tty-remove-resize-special") and commit
2283faa9cec083b6ddc1fa02a974ce1c797e847f ("tty-fix-pty-termios-race")
from the ttydev tree.

The latter is just further changes, so I took the ttydev tree version.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-14  5:50 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-14  5:50 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Olivier Blin, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/net/usb/hso.c between commit
e9690d2f637dd16bf20bc4d69b51ba72fb211822 ("hso: fix oops in read/write
callbacks") from the usb tree and commit
37a8d3fef248ae274c93974972469e0c36e21f73 ("tty-kref-hso") from the ttydev
tree.

Overlapping fixes.  I fixed them up as seemed obvious.

[Alan, I assume your patches will get better changelogs ...]
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-12  6:58 Stephen Rothwell
  2008-08-12 20:42 ` Greg KH
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-12  6:58 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Brownell, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/class/cdc-acm.c between commit
9e02103a5b182c5c99aaa8efa1def46bd215c707 ("usb: cdc-acm: stop dropping tx
buffers") from the usb.current tree and commit
1b873c25c7cb1571784626ce044b63a28909e288 ("tty-fix-cdc-acm") from the
ttydev tree.

The former removed a line that the latter modified.  I just removed the
line.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-08-12  6:55 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-08-12  6:55 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Christian Borntraeger

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/char/tty_io.c between commit
000b9151d7851cc1e490b2a76d0206e524f43cca ("Fix race/oops in tty layer
after BKL pushdown") from Linus' tree and commit
b3cfb0b9b2a6ca9d0bf8708688328ed65ce1ba99 ("tty-kref-get-current-tty")
from the ttydev tree.

It is just a contextual conflict (the former moved a line next to a
comment removed by the latter).  I fixed it up.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-23  6:47 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-23  6:47 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi Alan,

Today's linux-next merge of the ttydev tree got several conflicts in 6
files.  Since you said that it has all been merged into Linus' tree, I
have dropped it for today.

Could you please update the tree to reflect what has been merged upstream
(i.e. just leave an empty series file if there is nothing new).  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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-22  6:37 Stephen Rothwell
  2008-07-22 10:31 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-22  6:37 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi Alan,

Today's linux-next merge of the ttydev tree got conflicts in
drivers/char/istallion.c, drivers/char/mxser.c, drivers/char/specialix.c,
drivers/char/synclink_gt.c, drivers/char/tty_io.c,
drivers/usb/gadget/serial.c, drivers/usb/serial/cp2101.c,
drivers/usb/serial/io_ti.c, drivers/usb/serial/ir-usb.c,
drivers/usb/serial/usb-serial.c, include/linux/tty.h and
net/bluetooth/rfcomm/tty.c mainly against Linus' tree.

This is not unexpected since some of the ttydev tree has been merged, so I
will drop it for today in the hope that things are better tomorrow.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-21  7:20 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-21  7:20 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Brownell

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

Hi Alan,

Today's linux-next merge of the ttydev tree got conflicts in
drivers/usb/gadget/serial.c between commit
4d5d46818a74ff3bf7d7cedb9ecc3f0c362a1275 ("usb gadget: use new serial
core") from the usb tree and commit
7ba6ca8da2aca59d29196b7df3f71b0175354644 ("tty-gs-remove-break") from the
ttydev tree.

I used the usb tree version as it seemed to have removed the use of
break_ctl anyway.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-18  8:48 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-18  8:48 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Oliver Neukum, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/usb-serial.c between commit
f26eeced85fb3bdce383febcbb064147d5e15e91 ("USB: fix usb serial pm counter
decrement for disconnected interfaces") from the usb tree and commit
serial_close ("usb-serial-api-change") from the ttydev tree.

A simple context conflict which I fixed up and can carry the fixup.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-18  8:41 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-18  8:41 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Felipe Balbi, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/ir-usb.c between commit
0da89a4824f8d59efea82f84e197cc7d6f218cbf ("usb: irda: cleanup on ir-usb
module") from the usb tree and commit
255ba432f804717e8a2d6096aa2d92e970f61c3d ("usb-serial-api-change") from
the ttydev tree.

I used the ttydev version.  Worth a check to see if I got it right after
I publish the tree.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-18  8:28 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-18  8:28 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Harvey Harrison, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/cp2101.c between commit
b147c3a769995335107b4cd674bd2d1e1493ddfb ("USB: cp2101.c fix sparse
signedness mismatch warnings") from the usb tree and commit
255ba432f804717e8a2d6096aa2d92e970f61c3d ("usb-serial-api-change") from
the ttydev tree.

I did the obvious fixup and can carry it.  (the conflict is below)
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-18  8:23 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-18  8:23 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/airprime.c between commit
0cc220d6bfe0d92843868a8dd4f0bd427fe6d8e2 ("USB: delete airprime driver")
from the usb tree and commit 255ba432f804717e8a2d6096aa2d92e970f61c3d
("usb-serial-api-change") from the ttydev tree.

I just 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: 197 bytes --]

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-18  8:20 Stephen Rothwell
  2008-07-18  8:49 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-18  8:20 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Adrian Bunk, John W. Linville

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/net/wireless/strip.c between commit
94d9842403f770239a656586442454b7a8f2df29 ("remove the strip driver") from
the wireless tree and commit 08bec19ee22b6d02bf354323e6b5a3e61070c04a
("tty-fix-strip") from the ttydev tree.

I just removed the file for now.

I think I remember some discussion of this a while ago ...
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-04  9:11 Stephen Rothwell
  2008-07-04 15:41 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-04  9:11 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi Alan,

Today's linux-next merge of the hdlc tree got a conflict in
drivers/char/tty_io.c between commit
3e2a078ca6a0d3122bbf2b904cd7ccf21a5ca21d ("tty: Fix inverted logic in
send_break") from Linus' tree and "77-tty-break-errorhandler" from the
ttydev tree.

I made the obvious fixup.  Please redo the patch.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 14:12 Stephen Rothwell
  2008-07-01 14:16 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 14:12 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Woodhouse

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/ti_fw_3410.h and drivers/usb/serial/ti_fw_5052.h
between commit 01f845d09b8fdcdd27ee592422567b8dfa5b14d5
("ti_usb_3410_5052: use request_firmware()") from the firmware tree and
commit ce8194a09dee5b7e101467aba6b7cd5617b1cd0f
("23-usb-serial-api-change") from the ttydev tree.

The former removed the files.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 14:09 Stephen Rothwell
  2008-07-01 14:14 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 14:09 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in drivers/usb/serial/airprime.c between commit 31c3b66aea5816d8c9406a272de71ea474ef86b5 ("USB: delete airprime driver") from the usb tree and commit ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") from the ttydev tree.

The former 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: 197 bytes --]

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 14:07 Stephen Rothwell
  2008-07-01 14:12 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 14:07 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Adrian Bunk

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

Hi ,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/net/wireless/strip.c between commit
94d9842403f770239a656586442454b7a8f2df29 ("remove the strip driver") from
the net tree and commit 7636d4eb65deca18568e3ec4bfa65b85078042ce
("01-ldisc-ref") from the ttydev tree.

The former 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: 197 bytes --]

^ permalink raw reply	[flat|nested] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 14:04 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 14:04 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Woodhouse

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/whiteheat.c between commit
018a04cf1bff6e940600f1b65a147607f10d3a47 ("whiteheat: use request_firmware
()") from the firmware tree and commit
70f8e6e2b768df1105eea0a8ebf33527de9eae34 ("24-whiteheat-coding-style")
from the ttydev tree.

I basically took the firmware tree's version.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 13:56 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 13:56 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH, Kay Sievers, Oliver Neukum

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

[Just added some cc's]

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/usb-serial.c between commits
0eb943841bdeb2210058e899cef11f6084bedf82 ("USB: usb dev_name() instead of
dev->bus_id"), c19b07f9e5990423131d0435b303e572dc3132d0 ("USB: usb
dev_set_name() instead of dev->bus_id") and
26a8abb358ae6110b8c46afc40a85e6f47bc8eeb ("USB: fix usb serial pm counter
decrement for disconnected interfaces") from the usb tree and commit
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") and
ca66d73b800beb3bd391d9109ee13612755305cf ("44-tty-tidy-usb-serial")from
the ttydev tree.

The fixups were fairy obvious.  I can carry them.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 13:54 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 13:54 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi ,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/usb-serial.c between commits
0eb943841bdeb2210058e899cef11f6084bedf82 ("USB: usb dev_name() instead of
dev->bus_id"), c19b07f9e5990423131d0435b303e572dc3132d0 ("USB: usb
dev_set_name() instead of dev->bus_id") and
26a8abb358ae6110b8c46afc40a85e6f47bc8eeb ("USB: fix usb serial pm counter
decrement for disconnected interfaces") from the usb tree and commit
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") and
ca66d73b800beb3bd391d9109ee13612755305cf ("44-tty-tidy-usb-serial")from
the ttydev tree.

The fixups were fairy obvious.  I can carry them.
-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 13:43 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 13:43 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/ti_usb_3410_5052.c between commit
01f845d09b8fdcdd27ee592422567b8dfa5b14d5 ("ti_usb_3410_5052: use
request_firmware()") from the firmware tree and commits
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") and
b002e3f7c9249ddfd1d166cdb76cf7dde8dd93a2 ("62-tty-tidy-usb-ti-usb") from
the ttydev tree.

I fixed it up as best I could.  Definitely worth a look to see if I got
it right.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 12:43 Stephen Rothwell
  2008-07-01 14:09 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 12:43 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Woodhouse

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/keyspan_pda.c between commit
c81a074df394cba95767e7a8c2bf50c0ba1efd0e ("keyspan_pda: use
request_firmware()") from the firmware tree and commit
657f03fb0d6fa2ceb2c7d5417e7fd8a66df6e028 ("52-tty-tidy-usb-keyspan-pda")
from the ttydev tree.

Same as for keyspan.c.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 12:35 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 12:35 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Woodhouse

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/keyspan.c between commit
722051ff031346b1afd9008455d0b7eacfaa7c36 ("keyspan: use request_firmware
()") from the firmware tree and commit
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change")
from the ttydev tree.

The only real conflict was with the includes.  For the rest, I put the
firmware changes in over the tidyups.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:57 Stephen Rothwell
  2008-07-01 11:59 ` Felipe Balbi
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:57 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Felipe Balbi, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/ir-usb.c between commit
3128101cf92692e300fdb8bf66a9e8f286cbaa7f ("usb: irda: cleanup on ir-usb
module") from the usb tree and commits
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") and
ad58854921eeeab97a09600260ea03fa097394e4 ("48-tty-tidy-usb-ir-usb") from
the ttydev tree.

I didn't even know where to start :-(, so I used the version from the
ttydev tree (since the other is just a cleanup).

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:44 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:44 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/io_ti.c between commit
47794b33055da7b52e6718bc97258c95cba8cd67 ("USB: io_ti: FIrst cut at a big
clean up") from the usb tree (the equivalent of which appears to be in
the ttydev tee as well) and commit
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change")
from the ttydev tree.

There were many conflicts, so I just use the version from the ttydev tree.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:37 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:37 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a trivial conflict in
drivers/usb/serial/io_fw_down3.h between commit
47794b33055da7b52e6718bc97258c95cba8cd67 ("USB: io_ti: FIrst cut at a big
clean up") from the usb tree and commit
ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change")
from the ttydev tree.

The same change has happened but with a simple white space difference.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:33 Stephen Rothwell
  2008-07-12 18:59 ` Jesper Juhl
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:33 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Nick Andrew, Jesper Juhl

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/ftdi_sio.c between commit
0bb08241ce68aaa70b7b804b4d6319d8bad3ae24 ("Tighten up the use of loose")
from the trivial tree and commit ce8194a09dee5b7e101467aba6b7cd5617b1cd0f
("23-usb-serial-api-change") from the ttydev tree.

The conflict is just in a comment.  I have applied the spelling
correction from the former to the version of the file from the ttydev
tree.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:23 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:23 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Adrian Bunk, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/digi_acceleport.c between commit
6eccba01fa8ba0cfacca64297fc15f7d4077386e ("USB: remove CVS keywords")
from the usb tree and commit 44234195121820158769cdc2cc92e080dd94d8fe
("34-tty-tidy-usb-digi-acceleport") from the ttydev tree.

The former just removes the CVS annotation in the header comments which
are reformatted in the latter and also removes the CVS annotation.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:17 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:17 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, Harvey Harrison, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/serial/cp2101.c between commit
d79161478cea51d1ea3c470c26c9999e228761f2 ("USB: cp2101.c fix sparse
signedness mismatch warnings") from the usb tree and commit ce8194a09dee5b7e101467aba6b7cd5617b1cd0f ("23-usb-serial-api-change") from
the ttydev tree.

I have used the version of this file from the ttydev tree with the
addition of the signedness changes from the usb tree.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 11:10 Stephen Rothwell
  2008-07-01 11:56 ` Alan Cox
  0 siblings, 1 reply; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 11:10 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-next, David Brownell, Greg KH

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/usb/gadget/serial.c between commit
d4013f65e6b7be39e93845c280482e3f1d7894f0 ("usb gadget: use new serial
core") from the usb tree and commit
e806c01e6c8cacf955620105398902698ec3d933 ("79-tty-break-errorhandler")
from the ttydev tree.

The former patch removes the code modified by the latter.  I have used
the version from the usb tree.

-- 
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] 71+ messages in thread
* linux-next: manual merge of the ttydev tree
@ 2008-07-01 10:59 Stephen Rothwell
  0 siblings, 0 replies; 71+ messages in thread
From: Stephen Rothwell @ 2008-07-01 10:59 UTC (permalink / raw)
  To: Alan Cox
  Cc: linux-next, Kumar Gala, Paul Mackerras, linuxppc-dev, Adrian Bunk

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

Hi Alan,

Today's linux-next merge of the ttydev tree got a conflict in
drivers/serial/cpm_uart/cpm_uart_core.c between commit
0b2a2e5b7747f1f63bd86ca22b5c6097da5b2137 ("cpm_uart: Remove
!CONFIG_PPC_CPM_NEW_BINDING code") from the powerpc tree and commit
33e211d606d46d18befa6fe6aec76aa7971eefa8 ("03-serial_vcs") from the
ttydev tree.

The former removes some of the code modified by the latter.  It is a
simple fixup and I can carry it.

-- 
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] 71+ messages in thread

end of thread, other threads:[~2008-12-11 14:46 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-19  7:43 linux-next: manual merge of the ttydev tree Stephen Rothwell
2008-08-19 19:57 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2008-12-11  6:26 Stephen Rothwell
2008-12-11 10:21 ` Alan Cox
2008-12-11 14:46   ` Dan Williams
2008-09-19  2:57 Stephen Rothwell
2008-09-19  2:53 Stephen Rothwell
2008-08-25  8:33 Stephen Rothwell
2008-08-25  8:24 Stephen Rothwell
2008-08-22  5:51 Stephen Rothwell
2008-08-21  8:03 Stephen Rothwell
2008-08-21 10:21 ` Alan Cox
2008-08-21 12:14   ` Stephen Rothwell
2008-08-18  6:08 Stephen Rothwell
2008-08-14  5:50 Stephen Rothwell
2008-08-12  6:58 Stephen Rothwell
2008-08-12 20:42 ` Greg KH
2008-08-12  6:55 Stephen Rothwell
2008-07-23  6:47 Stephen Rothwell
2008-07-22  6:37 Stephen Rothwell
2008-07-22 10:31 ` Alan Cox
2008-07-21  7:20 Stephen Rothwell
2008-07-18  8:48 Stephen Rothwell
2008-07-18  8:41 Stephen Rothwell
2008-07-18  8:28 Stephen Rothwell
2008-07-18  8:23 Stephen Rothwell
2008-07-18  8:20 Stephen Rothwell
2008-07-18  8:49 ` Alan Cox
2008-07-18 10:49   ` Adrian Bunk
2008-07-18 10:55     ` David Miller
2008-07-18 11:00       ` Adrian Bunk
2008-07-04  9:11 Stephen Rothwell
2008-07-04 15:41 ` Alan Cox
2008-07-01 14:12 Stephen Rothwell
2008-07-01 14:16 ` Alan Cox
2008-07-01 14:09 Stephen Rothwell
2008-07-01 14:14 ` Alan Cox
2008-07-01 14:07 Stephen Rothwell
2008-07-01 14:12 ` Alan Cox
2008-07-01 14:43   ` Adrian Bunk
2008-07-01 15:42     ` Alan Cox
2008-07-01 16:45       ` Adrian Bunk
2008-07-01 14:04 Stephen Rothwell
2008-07-01 13:56 Stephen Rothwell
2008-07-01 13:54 Stephen Rothwell
2008-07-01 13:43 Stephen Rothwell
2008-07-01 12:43 Stephen Rothwell
2008-07-01 14:09 ` Alan Cox
2008-07-01 15:07   ` David Woodhouse
2008-07-01 15:29     ` Alan Cox
2008-07-02  9:01       ` David Woodhouse
2008-07-02  9:17         ` Alan Cox
2008-07-02  9:50           ` David Woodhouse
2008-07-02  9:43             ` Alan Cox
2008-07-01 12:35 Stephen Rothwell
2008-07-01 11:57 Stephen Rothwell
2008-07-01 11:59 ` Felipe Balbi
2008-07-01 15:25   ` Greg KH
2008-07-01 11:44 Stephen Rothwell
2008-07-01 11:37 Stephen Rothwell
2008-07-01 11:33 Stephen Rothwell
2008-07-12 18:59 ` Jesper Juhl
2008-07-12 20:29   ` Alan Cox
2008-07-13  1:20   ` Stephen Rothwell
2008-07-01 11:23 Stephen Rothwell
2008-07-01 11:17 Stephen Rothwell
2008-07-01 11:10 Stephen Rothwell
2008-07-01 11:56 ` Alan Cox
2008-07-01 16:18   ` David Brownell
2008-07-01 16:27     ` Alan Cox
2008-07-01 10:59 Stephen Rothwell

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).