Commit e1fec539 authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: gdm72xx: Remove wrapper function

Remove wrapper function that can be replaced by a single line of code.
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d2071984
...@@ -84,11 +84,6 @@ static inline struct evt_entry *alloc_event_entry(void) ...@@ -84,11 +84,6 @@ static inline struct evt_entry *alloc_event_entry(void)
return kmalloc(sizeof(struct evt_entry), GFP_ATOMIC); return kmalloc(sizeof(struct evt_entry), GFP_ATOMIC);
} }
static inline void free_event_entry(struct evt_entry *e)
{
kfree(e);
}
static struct evt_entry *get_event_entry(void) static struct evt_entry *get_event_entry(void)
{ {
struct evt_entry *e; struct evt_entry *e;
...@@ -180,11 +175,11 @@ static void gdm_wimax_event_exit(void) ...@@ -180,11 +175,11 @@ static void gdm_wimax_event_exit(void)
list_for_each_entry_safe(e, temp, &wm_event.evtq, list) { list_for_each_entry_safe(e, temp, &wm_event.evtq, list) {
list_del(&e->list); list_del(&e->list);
free_event_entry(e); kfree(e);
} }
list_for_each_entry_safe(e, temp, &wm_event.freeq, list) { list_for_each_entry_safe(e, temp, &wm_event.freeq, list) {
list_del(&e->list); list_del(&e->list);
free_event_entry(e); kfree(e);
} }
spin_unlock_irqrestore(&wm_event.evt_lock, flags); spin_unlock_irqrestore(&wm_event.evt_lock, flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment