Commit 6498613d authored by Quentin Lambert's avatar Quentin Lambert Committed by Greg Kroah-Hartman

staging: ozwpan: Move code from success handling to error handling

The original version was success handling rather than error handling,
therefore this patch reduces nesting.
Signed-off-by: default avatarQuentin Lambert <lambert.quentin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e03b7297
...@@ -283,15 +283,17 @@ static struct oz_endpoint *oz_ep_alloc(int buffer_size, gfp_t mem_flags) ...@@ -283,15 +283,17 @@ static struct oz_endpoint *oz_ep_alloc(int buffer_size, gfp_t mem_flags)
struct oz_endpoint *ep; struct oz_endpoint *ep;
ep = kzalloc(sizeof(struct oz_endpoint)+buffer_size, mem_flags); ep = kzalloc(sizeof(struct oz_endpoint)+buffer_size, mem_flags);
if (ep) { if (!ep)
INIT_LIST_HEAD(&ep->urb_list); return NULL;
INIT_LIST_HEAD(&ep->link);
ep->credit = -1; INIT_LIST_HEAD(&ep->urb_list);
if (buffer_size) { INIT_LIST_HEAD(&ep->link);
ep->buffer_size = buffer_size; ep->credit = -1;
ep->buffer = (u8 *)(ep+1); if (buffer_size) {
} ep->buffer_size = buffer_size;
ep->buffer = (u8 *)(ep+1);
} }
return ep; return ep;
} }
......
...@@ -103,34 +103,35 @@ void oz_pd_put(struct oz_pd *pd) ...@@ -103,34 +103,35 @@ void oz_pd_put(struct oz_pd *pd)
struct oz_pd *oz_pd_alloc(const u8 *mac_addr) struct oz_pd *oz_pd_alloc(const u8 *mac_addr)
{ {
struct oz_pd *pd; struct oz_pd *pd;
int i;
pd = kzalloc(sizeof(struct oz_pd), GFP_ATOMIC); pd = kzalloc(sizeof(struct oz_pd), GFP_ATOMIC);
if (pd) { if (!pd)
int i; return NULL;
atomic_set(&pd->ref_count, 2); atomic_set(&pd->ref_count, 2);
for (i = 0; i < OZ_NB_APPS; i++) for (i = 0; i < OZ_NB_APPS; i++)
spin_lock_init(&pd->app_lock[i]); spin_lock_init(&pd->app_lock[i]);
pd->last_rx_pkt_num = 0xffffffff; pd->last_rx_pkt_num = 0xffffffff;
oz_pd_set_state(pd, OZ_PD_S_IDLE); oz_pd_set_state(pd, OZ_PD_S_IDLE);
pd->max_tx_size = OZ_MAX_TX_SIZE; pd->max_tx_size = OZ_MAX_TX_SIZE;
ether_addr_copy(pd->mac_addr, mac_addr); ether_addr_copy(pd->mac_addr, mac_addr);
oz_elt_buf_init(&pd->elt_buff); oz_elt_buf_init(&pd->elt_buff);
spin_lock_init(&pd->tx_frame_lock); spin_lock_init(&pd->tx_frame_lock);
INIT_LIST_HEAD(&pd->tx_queue); INIT_LIST_HEAD(&pd->tx_queue);
INIT_LIST_HEAD(&pd->farewell_list); INIT_LIST_HEAD(&pd->farewell_list);
pd->last_sent_frame = &pd->tx_queue; pd->last_sent_frame = &pd->tx_queue;
spin_lock_init(&pd->stream_lock); spin_lock_init(&pd->stream_lock);
INIT_LIST_HEAD(&pd->stream_list); INIT_LIST_HEAD(&pd->stream_list);
tasklet_init(&pd->heartbeat_tasklet, oz_pd_heartbeat_handler, tasklet_init(&pd->heartbeat_tasklet, oz_pd_heartbeat_handler,
(unsigned long)pd); (unsigned long)pd);
tasklet_init(&pd->timeout_tasklet, oz_pd_timeout_handler, tasklet_init(&pd->timeout_tasklet, oz_pd_timeout_handler,
(unsigned long)pd); (unsigned long)pd);
hrtimer_init(&pd->heartbeat, CLOCK_MONOTONIC, HRTIMER_MODE_REL); hrtimer_init(&pd->heartbeat, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
hrtimer_init(&pd->timeout, CLOCK_MONOTONIC, HRTIMER_MODE_REL); hrtimer_init(&pd->timeout, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
pd->heartbeat.function = oz_pd_heartbeat_event; pd->heartbeat.function = oz_pd_heartbeat_event;
pd->timeout.function = oz_pd_timeout_event; pd->timeout.function = oz_pd_timeout_event;
}
return pd; return pd;
} }
......
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