From: Kirill A. Shutemov Date: Tue, 15 Mar 2011 22:53:19 +0000 (+0000) Subject: vmlfb: use list_move() instead of list_del()/list_add() combination X-Git-Tag: v2.6.39-rc1~98^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1721af4d8581587409d66d4fe0be6bc455611e5b;p=profile%2Fivi%2Fkernel-x86-ivi.git vmlfb: use list_move() instead of list_del()/list_add() combination Signed-off-by: Kirill A. Shutemov Signed-off-by: Paul Mundt --- diff --git a/drivers/video/vermilion/vermilion.c b/drivers/video/vermilion/vermilion.c index 931a567..970e43d 100644 --- a/drivers/video/vermilion/vermilion.c +++ b/drivers/video/vermilion/vermilion.c @@ -891,8 +891,7 @@ static int vmlfb_set_par(struct fb_info *info) int ret; mutex_lock(&vml_mutex); - list_del(&vinfo->head); - list_add(&vinfo->head, (subsys) ? &global_has_mode : &global_no_mode); + list_move(&vinfo->head, (subsys) ? &global_has_mode : &global_no_mode); ret = vmlfb_set_par_locked(vinfo); mutex_unlock(&vml_mutex);