]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/asm-avr32/pgalloc.h
[AVR32] Fix atomic_add_unless() and atomic_sub_unless()
[karo-tx-linux.git] / include / asm-avr32 / pgalloc.h
index 7492cfb92ceddfabcd8eefacf1cea392c06b9b51..bb82e70cde8d048fb01c3594b0233ba8c9d83fbd 100644 (file)
@@ -28,7 +28,7 @@ static __inline__ void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
 static __inline__ pgd_t *pgd_alloc(struct mm_struct *mm)
 {
        unsigned int pgd_size = (USER_PTRS_PER_PGD * sizeof(pgd_t));
-       pgd_t *pgd = (pgd_t *)kmalloc(pgd_size, GFP_KERNEL);
+       pgd_t *pgd = kmalloc(pgd_size, GFP_KERNEL);
 
        if (pgd)
                memset(pgd, 0, pgd_size);