diff options
author | Stefani Seibold <stefani@seibold.net> | 2009-12-21 17:37:28 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-22 17:17:56 -0500 |
commit | 7acd72eb85f1c7a15e8b5eb554994949241737f1 (patch) | |
tree | 76712bb9f38690d8cf9c2f91bef811e4413d1aa3 /drivers/net/wireless | |
parent | e64c026dd09b73faf20707711402fc5ed55a8e70 (diff) |
kfifo: rename kfifo_put... into kfifo_in... and kfifo_get... into kfifo_out...
rename kfifo_put... into kfifo_in... to prevent miss use of old non in
kernel-tree drivers
ditto for kfifo_get... -> kfifo_out...
Improve the prototypes of kfifo_in and kfifo_out to make the kerneldoc
annotations more readable.
Add mini "howto porting to the new API" in kfifo.h
Signed-off-by: Stefani Seibold <stefani@seibold.net>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/libertas/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c index 0622104f0a03..2bcfa745524a 100644 --- a/drivers/net/wireless/libertas/main.c +++ b/drivers/net/wireless/libertas/main.c | |||
@@ -513,7 +513,8 @@ static int lbs_thread(void *data) | |||
513 | spin_lock_irq(&priv->driver_lock); | 513 | spin_lock_irq(&priv->driver_lock); |
514 | while (kfifo_len(&priv->event_fifo)) { | 514 | while (kfifo_len(&priv->event_fifo)) { |
515 | u32 event; | 515 | u32 event; |
516 | kfifo_get(&priv->event_fifo, (unsigned char *) &event, | 516 | |
517 | kfifo_out(&priv->event_fifo, (unsigned char *) &event, | ||
517 | sizeof(event)); | 518 | sizeof(event)); |
518 | spin_unlock_irq(&priv->driver_lock); | 519 | spin_unlock_irq(&priv->driver_lock); |
519 | lbs_process_event(priv, event); | 520 | lbs_process_event(priv, event); |
@@ -1175,7 +1176,7 @@ void lbs_queue_event(struct lbs_private *priv, u32 event) | |||
1175 | if (priv->psstate == PS_STATE_SLEEP) | 1176 | if (priv->psstate == PS_STATE_SLEEP) |
1176 | priv->psstate = PS_STATE_AWAKE; | 1177 | priv->psstate = PS_STATE_AWAKE; |
1177 | 1178 | ||
1178 | kfifo_put(&priv->event_fifo, (unsigned char *) &event, sizeof(u32)); | 1179 | kfifo_in(&priv->event_fifo, (unsigned char *) &event, sizeof(u32)); |
1179 | 1180 | ||
1180 | wake_up_interruptible(&priv->waitq); | 1181 | wake_up_interruptible(&priv->waitq); |
1181 | 1182 | ||