Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228063
b: refs/heads/master
c: 3c9d465
h: refs/heads/master
i:
  228061: 413ac60
  228059: 5ce0740
  228055: 35533fc
  228047: bbd216e
  228031: 316c5ec
v: v3
  • Loading branch information
Jesper Juhl authored and Greg Kroah-Hartman committed Nov 10, 2010
1 parent b911414 commit f93ea5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6f710907ff452ab67bd1161bc3f7a95f9a7e809d
refs/heads/master: 3c9d46526db88218a311a72971efae1b4366d4c6
Original file line number Diff line number Diff line change
Expand Up @@ -2127,10 +2127,7 @@ void cy_as_hal_pll_lock_loss_handler(cy_as_hal_device_tag tag)
*/
void *cy_as_hal_alloc(uint32_t cnt)
{
void *ret_p;

ret_p = kmalloc(cnt, GFP_ATOMIC);
return ret_p;
return kmalloc(cnt, GFP_ATOMIC);
}

/*
Expand All @@ -2150,10 +2147,7 @@ void cy_as_hal_free(void *mem_p)
*/
void *cy_as_hal_c_b_alloc(uint32_t cnt)
{
void *ret_p;

ret_p = kmalloc(cnt, GFP_ATOMIC);
return ret_p;
return kmalloc(cnt, GFP_ATOMIC);
}

/*
Expand Down

0 comments on commit f93ea5e

Please sign in to comment.