Commit c5c07550 authored by Figo.zhang's avatar Figo.zhang Committed by Dave Airlie

drm/via: vfree() no need checking before calling it

vfree() does it's own NULL checking, no need for explicit check before
calling it.
Signed-off-by: default avatarFigo.zhang <figo1802@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent be25ed9c
...@@ -195,10 +195,8 @@ via_free_sg_info(struct pci_dev *pdev, drm_via_sg_info_t *vsg) ...@@ -195,10 +195,8 @@ via_free_sg_info(struct pci_dev *pdev, drm_via_sg_info_t *vsg)
default: default:
vsg->state = dr_via_sg_init; vsg->state = dr_via_sg_init;
} }
if (vsg->bounce_buffer) {
vfree(vsg->bounce_buffer); vfree(vsg->bounce_buffer);
vsg->bounce_buffer = NULL; vsg->bounce_buffer = NULL;
}
vsg->free_on_sequence = 0; vsg->free_on_sequence = 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment