Blackfin arch: Fix bug - when to rmmod the L1_module, it stucks and then reboot the board.

Fix this by correcting the wrong pointer

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>

authored by Sonic Zhang and committed by Bryan Wu 225f7e1e d70536ec

+1 -1
+1 -1
arch/blackfin/mm/blackfin_sram.c
··· 335 335 plast->size += pavail->size; 336 336 kmem_cache_free(sram_piece_cache, pavail); 337 337 } else { 338 - pavail->next = plast; 338 + pavail->next = plast->next; 339 339 plast->next = pavail; 340 340 plast = pavail; 341 341 }