mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 23:45:31 +08:00
drm/i915: Do not handle a null plane state.
With the conversion to atomic this cannot happen any more. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
8e0e9ceaa0
commit
bca8013ec2
@ -76,11 +76,7 @@ intel_plane_duplicate_state(struct drm_plane *plane)
|
||||
struct drm_plane_state *state;
|
||||
struct intel_plane_state *intel_state;
|
||||
|
||||
if (WARN_ON(!plane->state))
|
||||
intel_state = intel_create_plane_state(plane);
|
||||
else
|
||||
intel_state = kmemdup(plane->state, sizeof(*intel_state),
|
||||
GFP_KERNEL);
|
||||
intel_state = kmemdup(plane->state, sizeof(*intel_state), GFP_KERNEL);
|
||||
|
||||
if (!intel_state)
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user