diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-06 12:48:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-06 12:48:31 -0400 |
commit | c87985a3ce723995fc7b25e598238d67154108a1 (patch) | |
tree | e60def1b77c25c1d74180f62e8a5603f9826f209 /net/irda | |
parent | d155255a344c417acad74156654295a2964e6b81 (diff) | |
parent | 0d7614f09c1ebdbaa1599a5aba7593f147bf96ee (diff) |
Merge tty-next into 3.6-rc1
This handles the merge issue in:
arch/um/drivers/line.c
arch/um/drivers/line.h
And resolves the duplicate patches that were in both trees do to the
tty-next branch not getting merged into 3.6-rc1.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/irda')
-rw-r--r-- | net/irda/af_irda.c | 2 | ||||
-rw-r--r-- | net/irda/irlan/irlan_provider.c | 2 | ||||
-rw-r--r-- | net/irda/irqueue.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/net/irda/af_irda.c b/net/irda/af_irda.c index bb14c3477680..bb738c9f9146 100644 --- a/net/irda/af_irda.c +++ b/net/irda/af_irda.c | |||
@@ -955,7 +955,7 @@ out: | |||
955 | * The main difference with a "standard" connect is that with IrDA we need | 955 | * The main difference with a "standard" connect is that with IrDA we need |
956 | * to resolve the service name into a TSAP selector (in TCP, port number | 956 | * to resolve the service name into a TSAP selector (in TCP, port number |
957 | * doesn't have to be resolved). | 957 | * doesn't have to be resolved). |
958 | * Because of this service name resoltion, we can offer "auto-connect", | 958 | * Because of this service name resolution, we can offer "auto-connect", |
959 | * where we connect to a service without specifying a destination address. | 959 | * where we connect to a service without specifying a destination address. |
960 | * | 960 | * |
961 | * Note : by consulting "errno", the user space caller may learn the cause | 961 | * Note : by consulting "errno", the user space caller may learn the cause |
diff --git a/net/irda/irlan/irlan_provider.c b/net/irda/irlan/irlan_provider.c index 32dcaac70b0c..4664855222f4 100644 --- a/net/irda/irlan/irlan_provider.c +++ b/net/irda/irlan/irlan_provider.c | |||
@@ -296,7 +296,7 @@ void irlan_provider_send_reply(struct irlan_cb *self, int command, | |||
296 | skb = alloc_skb(IRLAN_MAX_HEADER + IRLAN_CMD_HEADER + | 296 | skb = alloc_skb(IRLAN_MAX_HEADER + IRLAN_CMD_HEADER + |
297 | /* Bigger param length comes from CMD_GET_MEDIA_CHAR */ | 297 | /* Bigger param length comes from CMD_GET_MEDIA_CHAR */ |
298 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "DIRECTED") + | 298 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "DIRECTED") + |
299 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "BORADCAST") + | 299 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "BROADCAST") + |
300 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "MULTICAST") + | 300 | IRLAN_STRING_PARAMETER_LEN("FILTER_TYPE", "MULTICAST") + |
301 | IRLAN_STRING_PARAMETER_LEN("ACCESS_TYPE", "HOSTED"), | 301 | IRLAN_STRING_PARAMETER_LEN("ACCESS_TYPE", "HOSTED"), |
302 | GFP_ATOMIC); | 302 | GFP_ATOMIC); |
diff --git a/net/irda/irqueue.c b/net/irda/irqueue.c index f06947c4fa82..7152624ed5f1 100644 --- a/net/irda/irqueue.c +++ b/net/irda/irqueue.c | |||
@@ -523,7 +523,7 @@ void *hashbin_remove_first( hashbin_t *hashbin) | |||
523 | * Dequeue the entry... | 523 | * Dequeue the entry... |
524 | */ | 524 | */ |
525 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], | 525 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], |
526 | (irda_queue_t*) entry ); | 526 | entry); |
527 | hashbin->hb_size--; | 527 | hashbin->hb_size--; |
528 | entry->q_next = NULL; | 528 | entry->q_next = NULL; |
529 | entry->q_prev = NULL; | 529 | entry->q_prev = NULL; |
@@ -615,7 +615,7 @@ void* hashbin_remove( hashbin_t* hashbin, long hashv, const char* name) | |||
615 | */ | 615 | */ |
616 | if ( found ) { | 616 | if ( found ) { |
617 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], | 617 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], |
618 | (irda_queue_t*) entry ); | 618 | entry); |
619 | hashbin->hb_size--; | 619 | hashbin->hb_size--; |
620 | 620 | ||
621 | /* | 621 | /* |
@@ -685,7 +685,7 @@ void* hashbin_remove_this( hashbin_t* hashbin, irda_queue_t* entry) | |||
685 | * Dequeue the entry... | 685 | * Dequeue the entry... |
686 | */ | 686 | */ |
687 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], | 687 | dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ], |
688 | (irda_queue_t*) entry ); | 688 | entry); |
689 | hashbin->hb_size--; | 689 | hashbin->hb_size--; |
690 | entry->q_next = NULL; | 690 | entry->q_next = NULL; |
691 | entry->q_prev = NULL; | 691 | entry->q_prev = NULL; |