frv: remove unnecessary code
remove unnecessary code that matches this coccinelle pattern if (...) return ret; return ret; Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
83c1b31794
commit
dbfe898777
1 changed files with 1 additions and 7 deletions
|
@ -133,13 +133,7 @@ void pgd_dtor(void *pgd)
|
|||
|
||||
pgd_t *pgd_alloc(struct mm_struct *mm)
|
||||
{
|
||||
pgd_t *pgd;
|
||||
|
||||
pgd = quicklist_alloc(0, GFP_KERNEL, pgd_ctor);
|
||||
if (!pgd)
|
||||
return pgd;
|
||||
|
||||
return pgd;
|
||||
return quicklist_alloc(0, GFP_KERNEL, pgd_ctor);
|
||||
}
|
||||
|
||||
void pgd_free(struct mm_struct *mm, pgd_t *pgd)
|
||||
|
|
Loading…
Reference in a new issue