diff options
Diffstat (limited to 'net/irda/irqueue.c')
-rw-r--r-- | net/irda/irqueue.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |