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
|
@ -133,13 +133,7 @@ void pgd_dtor(void *pgd)
|
||||||
|
|
||||||
pgd_t *pgd_alloc(struct mm_struct *mm)
|
pgd_t *pgd_alloc(struct mm_struct *mm)
|
||||||
{
|
{
|
||||||
pgd_t *pgd;
|
return quicklist_alloc(0, GFP_KERNEL, pgd_ctor);
|
||||||
|
|
||||||
pgd = quicklist_alloc(0, GFP_KERNEL, pgd_ctor);
|
|
||||||
if (!pgd)
|
|
||||||
return pgd;
|
|
||||||
|
|
||||||
return pgd;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void pgd_free(struct mm_struct *mm, pgd_t *pgd)
|
void pgd_free(struct mm_struct *mm, pgd_t *pgd)
|
||||||
|
|
Loading…
Reference in New Issue